diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-08-05 18:49:49 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-03-06 18:24:50 -0600 |
commit | bb730d21bd1ecc5c5e837574268e1ac3cbb2ea08 (patch) | |
tree | 6cbd35c8c8cba7acd72a30956055864c35fe6b9a | |
parent | a893cc98b5d49f092bcfc357c2e0ac23149f9cbd (diff) | |
download | abuild-bb730d21bd1ecc5c5e837574268e1ac3cbb2ea08.tar.gz abuild-bb730d21bd1ecc5c5e837574268e1ac3cbb2ea08.tar.bz2 abuild-bb730d21bd1ecc5c5e837574268e1ac3cbb2ea08.tar.xz abuild-bb730d21bd1ecc5c5e837574268e1ac3cbb2ea08.zip |
abuild: do not add busybox dep if package has triggers
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -951,7 +951,7 @@ prepare_metafiles() { EOF local i deps deps="$depends" - if [ "$pkgname" != "busybox" ] && ! depends_has busybox && ! depends_has /bin/sh; then + if ! depends_has /bin/sh; then for i in $install $triggers; do local s=${i%=*} [ "$name" != "${s%.*}" ] && continue |