diff options
Diffstat (limited to 'repo/meta')
-rw-r--r-- | repo/meta/all.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/base.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/build-system.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/sh.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/system.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/systemconfigs.xibuild | 1 | ||||
-rw-r--r-- | repo/meta/utilities.xibuild | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/repo/meta/all.xibuild b/repo/meta/all.xibuild index 57aa674..f2ee6a6 100644 --- a/repo/meta/all.xibuild +++ b/repo/meta/all.xibuild @@ -1,5 +1,6 @@ DEPS=() for i in $(ls -1 $(echo $BUILD_FILE_PATH | rev | cut -d/ -f3- | rev)/*/*.xibuild); do +MAKEDEPS=() name=$(basename -s .xibuild $i) DEPS=(${DEPS[@]} $name) done diff --git a/repo/meta/base.xibuild b/repo/meta/base.xibuild index d44b078..4797e39 100644 --- a/repo/meta/base.xibuild +++ b/repo/meta/base.xibuild @@ -1,4 +1,5 @@ #!/bin/bash DEPS=(acl attr binutils brotli bzip2 cacerts coreutils eudev expat findutils gc gdbm gettext glibc gmp gnutls gperf grep grub guile gzip iana-etc intltool kbd kmod krb5 libcap-ng libcap libffi libiconv libidn libldap libnghttp libp11-kit libpipeline libpsl libsasl libseccomp libsigsegv libtasn1 libtool libunistring libxcrypt libxml2 libxslt lz4 lzo mpfr ncurses nettle nspr openssl pam pcre perl perl-xml-parser psmisc python-requests python readline rtmpdump sed shadow sysklogd sysvinit tar tcl xxhash xz zip zlib zstd linux-headers xipkg bootscripts systemconfigs linux dracut) +MAKEDEPS=(grep python ) DESC="The base system to be installed" diff --git a/repo/meta/build-system.xibuild b/repo/meta/build-system.xibuild index 78422c4..7f139cf 100644 --- a/repo/meta/build-system.xibuild +++ b/repo/meta/build-system.xibuild @@ -1,5 +1,6 @@ repo=devel +MAKEDEPS=() DEPS=() for i in $(ls -1 $(echo $BUILD_FILE_PATH | rev | cut -d/ -f3- | rev)/$repo); do diff --git a/repo/meta/sh.xibuild b/repo/meta/sh.xibuild index fcca9e8..a3ae799 100644 --- a/repo/meta/sh.xibuild +++ b/repo/meta/sh.xibuild @@ -1,5 +1,6 @@ #!/bin/bash DEPS=(bash) +MAKEDEPS=() DESC="The system shell" diff --git a/repo/meta/system.xibuild b/repo/meta/system.xibuild index 8db89df..06971e3 100644 --- a/repo/meta/system.xibuild +++ b/repo/meta/system.xibuild @@ -1,5 +1,6 @@ repo=devel +MAKEDEPS=() DEPS=() for i in $(ls -1 $(echo $BUILD_FILE_PATH | rev | cut -d/ -f3- | rev)/$repo); do diff --git a/repo/meta/systemconfigs.xibuild b/repo/meta/systemconfigs.xibuild index 1f843b9..8d0556f 100644 --- a/repo/meta/systemconfigs.xibuild +++ b/repo/meta/systemconfigs.xibuild @@ -1,5 +1,6 @@ #!/bin/bash +MAKEDEPS=() DEPS=(bootscripts sh) PKG_VER=N/A diff --git a/repo/meta/utilities.xibuild b/repo/meta/utilities.xibuild index b359024..e4818fa 100644 --- a/repo/meta/utilities.xibuild +++ b/repo/meta/utilities.xibuild @@ -1,5 +1,6 @@ repo=util +MAKEDEPS=() DEPS=() for i in $(ls -1 $(echo $BUILD_FILE_PATH | rev | cut -d/ -f3- | rev)/$repo); do |