diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 21:02:42 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 21:02:42 +0000 |
commit | 0c95023bfe54fffbad7426b277e47d8b4182db3c (patch) | |
tree | cf2eb0fed448d6a423c17ac95dda599d981840a0 /repo/core | |
parent | 2d4c956677321ea924a620fa5ba684b0666841dc (diff) |
amde cacerts optionally not fail
Diffstat (limited to 'repo/core')
-rw-r--r-- | repo/core/cacerts.xibuild | 2 | ||||
-rw-r--r-- | repo/core/file.xibuild | 2 | ||||
-rw-r--r-- | repo/core/guile.xibuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/repo/core/cacerts.xibuild b/repo/core/cacerts.xibuild index 23ce5dd..9ebe9bd 100644 --- a/repo/core/cacerts.xibuild +++ b/repo/core/cacerts.xibuild @@ -7,5 +7,5 @@ DESC="Root certificates needed by ssl built using make-ca" package () { bash make-ca -g --force -D $PKG_DEST - chmod -R 777 $PKG_DEST + chmod -R 777 $PKG_DEST || echo "couldnt change permissions for $PKG_DEST" } diff --git a/repo/core/file.xibuild b/repo/core/file.xibuild index 0e4da82..150810b 100644 --- a/repo/core/file.xibuild +++ b/repo/core/file.xibuild @@ -3,7 +3,7 @@ DEPS=(glibc zlib xz bzip2) SOURCE=http://ftp.astron.com/pub/file/file-5.40.tar.gz -DESC="a utility for determining the type of a given file or files" +DESC="A utility for determining the type of a given file or files" build () { ./configure --prefix=/usr diff --git a/repo/core/guile.xibuild b/repo/core/guile.xibuild index 1d9784a..fd65daa 100644 --- a/repo/core/guile.xibuild +++ b/repo/core/guile.xibuild @@ -3,7 +3,7 @@ DEPS=(gmp libltdl ncurses texinfo libunistring gc libffi) SOURCE=https://ftp.gnu.org/gnu/guile/guile-2.2.7.tar.gz -DESC="The free Bourne Again Shell" +DESC="Portable, embeddable Scheme implementation written in C" build () { ./autogen.sh |