summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-04-17 03:51:18 +0200
committerDan McGee <dan@archlinux.org>2007-04-17 03:51:18 +0200
commit8bd0f3921f42ba40413bf82da9bf0bee457a2a9b (patch)
tree316c75829b746eba428766dc09ddb98f62e5a5f5 /scripts
parent14606c301cce168b042925726b19d5d7c5b725f6 (diff)
downloadpacman-8bd0f3921f42ba40413bf82da9bf0bee457a2a9b.tar.gz
pacman-8bd0f3921f42ba40413bf82da9bf0bee457a2a9b.tar.xz
Forward port 3.0.2 branch fixes
Fix #6905- makepkg dependency checking error Fix #6915- add SUU mirror to mirrorlist.in Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-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