diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-25 10:46:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-25 10:46:13 +0000 |
commit | c3408b76fee1198cce04cd026c3a50da88d386ce (patch) | |
tree | 8af422737300b12be96c5b8475085e53542c3b7c /abuild | |
parent | 1af37411f076b3f181242d78523fa8bdca47eb91 (diff) | |
download | abuild-c3408b76fee1198cce04cd026c3a50da88d386ce.tar.gz abuild-c3408b76fee1198cce04cd026c3a50da88d386ce.tar.bz2 abuild-c3408b76fee1198cce04cd026c3a50da88d386ce.tar.xz abuild-c3408b76fee1198cce04cd026c3a50da88d386ce.zip |
mention -u option for mising dep error message
Diffstat (limited to 'abuild')
-rwxr-xr-x | abuild | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -409,7 +409,7 @@ builddeps() { local dep pkg for dep in $depends $makedepends; do [ -z "$upgrade" ] && apk_info -e $dep && continue - [ -z "$recursive" ] && die "Missing dependency $dep. Use -r to build recursively" + [ -z "$recursive" ] && die "Missing dependency $dep. Use -r or -u to build recursively" pkg=$(find_aport $dep) if [ -z "$pkg" ]; then # try install from system repo as fallback |