Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=30983ec2bb743229e6e1f326bdc69bb2bc86304b
commit 30983ec2bb743229e6e1f326bdc69bb2bc86304b Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Thu Dec 27 00:58:38 2007 +0100 makepkg: quote fix when checking for missing scriptlet thx crazy for noticing this diff --git a/scripts/makepkg b/scripts/makepkg index df9256f..b84d1bd 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -913,7 +913,7 @@ if [ ! -z "$subpkgs" ]; then fi fi -if [ ! -e $install -a ! -e $startdir/$install -a ! "`check_option GENSCRIPTLET`" ]; then +if [ ! -e "$install" -a ! -e "$startdir/$install" -a ! "`check_option GENSCRIPTLET`" ]; then error "Missing install scriptlet. If this is intentional, add 'genscriptlet' to options()." exit 1 fi _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
