summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/makepkg.in')
-rwxr-xr-xscripts/makepkg.in3
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