Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=dda53e45373f2e707016a1fc51391101af290756
commit dda53e45373f2e707016a1fc51391101af290756 Author: Marcus Habermehl (BMH1980) <[EMAIL PROTECTED]> Date: Tue Sep 30 12:35:34 2008 +0200 scripts/makepkg changing GZIP to USEGZIP, because GZIP is an environment variable of the gzip binary diff --git a/scripts/makepkg b/scripts/makepkg index d40a0ea..58876be 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -51,7 +51,7 @@ NOSTRIP=0 RMDEPS=0 CHROOT=1 NOUP2DATE=0 -GZIP=0 +USEGZIP=0 NODOCS=0 TREE="" CACHEURL="" @@ -573,7 +573,7 @@ create_pkg() extra="$extra .CHANGELOG" fi - if [ "$GZIP" == "1" ]; then + if [ "$USEGZIP" == "1" ]; then tarargs="czf" warning "Using gzip compression - this is not optimal!" else @@ -710,7 +710,7 @@ while [ "$#" -ne "0" ]; do --host) CHROOT=0 ;; --noup2date) NOUP2DATE=1 ;; --logging) ;; # we can remove this after Frugalware-0.7 is out - --gzip) GZIP=1 ;; + --gzip) USEGZIP=1 ;; --help) usage exit 0 _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
