diff options
author | Dan McGee <dan@archlinux.org> | 2007-04-17 03:49:06 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-04-17 03:49:06 +0200 |
commit | ec83c93ea4a7d4742c5d92438b0da1c469704257 (patch) | |
tree | f1b1cf1c30c09f57c3c6163d09c5927fefb49560 /scripts | |
parent | 562887ba5cda60cb288f2c46fcb4b84339f50cb2 (diff) | |
download | pacman-ec83c93ea4a7d4742c5d92438b0da1c469704257.tar.gz pacman-ec83c93ea4a7d4742c5d92438b0da1c469704257.tar.xz |
Bugfixes in prep for a 3.0.2 release
Fix #6905- makepkg dependency checking error
Fix #6915- add SUU mirror to mirrorlist.in
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/makepkg | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index 9cfea69e..9e38a6dd 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -182,8 +182,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 "pacman returned a fatal error ($ret): $pmout" exit 1 |