1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-11-10 11:35:00 -05:00

Bugfixes in prep for a 3.0.2 release

Fix #6905- makepkg dependency checking error
Fix #6915- add SUU mirror to mirrorlist.in
This commit is contained in:
Dan McGee 2007-04-17 01:49:06 +00:00
parent 562887ba5c
commit ec83c93ea4
3 changed files with 3 additions and 3 deletions

View File

@ -5,6 +5,7 @@
# United States
Server = ftp://ftp.archlinux.org/@@REPO@@/os/@CARCH@
Server = ftp://ftp.nethat.com/pub/linux/archlinux/@@REPO@@/os/@CARCH@
Server = ftp://locke.suu.edu/linux/dist/archlinux/@@REPO@@/os/@CARCH@
Server = ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/archlinux/@@REPO@@/os/@CARCH@
Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/@@REPO@@/os/@CARCH@
Server = http://mirrors.easynews.com/linux/archlinux/@@REPO@@/os/@CARCH@

View File

@ -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

View File

@ -81,7 +81,7 @@ int pacman_deptest(alpm_list_t *targets)
}
if(!found) {
MSG(NL, _("requires: %s"), saved_target);
MSG(NL, "%s", saved_target);
retval = 1;
}
free(saved_target);