Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=4b53458c32bcd912476af3a3113925392016f803

commit 4b53458c32bcd912476af3a3113925392016f803
Author: Miklos Vajna <[EMAIL PROTECTED]>
Date:   Wed Jun 11 14:57:25 2008 +0200

makepkg: properly espace ';' in filename when checking for rsync cache

diff --git a/scripts/makepkg b/scripts/makepkg
index 475defb..9606320 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -1285,7 +1285,7 @@ for netfile in "[EMAIL PROTECTED]" "[EMAIL PROTECTED]"; do
# try to download the file from the cache server
if [ -n "$RSYNCAGENT" -a -n "$CACHEURL" ]; then
# check if the file is there
-                       eval $RSYNCAGENT $CACHEURL/$file &>/dev/null
+                       eval $RSYNCAGENT $CACHEURL/${file/;/\;} &>/dev/null
if [ "$?" = "0" ]; then
eval $RSYNCAGENT $CACHEURL/$file ./
if [ ! -f "$file" ]; then
_______________________________________________
Frugalware-git mailing list
[email protected]
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to