diff options
author | Judd Vinet <judd@archlinux.org> | 2006-01-27 00:48:28 +0100 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2006-01-27 00:48:28 +0100 |
commit | fe25662d38635fe94cb1f332236f9cfca3ac4814 (patch) | |
tree | 0ab029ca5a552ea26578cd2009a63a3216b81acc /scripts | |
parent | 819c265cdb404a4fdcc76ba7b05f0697eb4f4674 (diff) | |
download | pacman-fe25662d38635fe94cb1f332236f9cfca3ac4814.tar.gz pacman-fe25662d38635fe94cb1f332236f9cfca3ac4814.tar.xz |
little fix for erroneous output
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/makepkg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index 84464c24..51980005 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -106,6 +106,8 @@ checkdeps() { local missdep="" local deplist="" + [ $# -gt 0 ] || return + missdep=`pacman -T $*` ret=$? if [ "$ret" != "0" ]; then |