diff options
author | davidovski <david@davidovski.xyz> | 2022-01-03 17:00:12 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-03 17:00:12 +0000 |
commit | 1dd45cbc25ccf684f152535edee0364ea5f050ce (patch) | |
tree | f1ee5d64580c93195cb838492199f6e0c1771000 /repo/core | |
parent | 93d60f57780b9f1e9206f411e183bf28e6272334 (diff) |
fixed permissions issue from cacerts
Diffstat (limited to 'repo/core')
-rw-r--r-- | repo/core/cacerts.xibuild | 1 | ||||
-rw-r--r-- | repo/core/sysvinit.xibuild | 11 |
2 files changed, 1 insertions, 11 deletions
diff --git a/repo/core/cacerts.xibuild b/repo/core/cacerts.xibuild index d80d220..23ce5dd 100644 --- a/repo/core/cacerts.xibuild +++ b/repo/core/cacerts.xibuild @@ -7,4 +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 } diff --git a/repo/core/sysvinit.xibuild b/repo/core/sysvinit.xibuild deleted file mode 100644 index 0674787..0000000 --- a/repo/core/sysvinit.xibuild +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -DEPS=(sh glibc) - -SOURCE=http://download.savannah.nongnu.org/releases/sysvinit/sysvinit-3.00.tar.xz -DESC="The sysvinit system for controlling startup, running and shutdown of the system" - -build () { - make - make DESTDIR=$PKG_DEST install -} |