diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/makepkg.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/makepkg.in b/scripts/makepkg.in index ba62a2db..7bfdf000 100755 --- a/scripts/makepkg.in +++ b/scripts/makepkg.in @@ -228,8 +228,7 @@ checkdeps() { pmout=$(pacman $PACMAN_OPTS -T $*) ret=$? if [ $ret -eq 1 ]; then #unresolved deps - #strip out the pacman prefix from "requires: xyz" - echo $pmout | sed 's|requires:||g' + echo "$pmout" elif [ $ret -ne 0 ]; then error "$(eval_gettext "pacman returned a fatal error (\$ret): \$pmout")" exit 1 |