From: Robert Boehne Date: Thu, 3 Apr 2003 05:45:22 +0000 (+0000) Subject: * tests/defs: Quote $DJGPP to prevent problems with some shells. X-Git-Tag: release-1-5~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4526a66edd108db5dbf4ee1245203e7ecccfd9ba;p=thirdparty%2Flibtool.git * tests/defs: Quote $DJGPP to prevent problems with some shells. Pointed out by Albert Chin --- diff --git a/ChangeLog b/ChangeLog index 8d25ca20f..997e78500 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-04-02 Robert Boehne + + * tests/defs: Quote $DJGPP to prevent problems with some shells. + Pointed out by Albert Chin + 2003-04-01 Peter O'Gorman * libtool.m4: Fix the echo test which I broke earlier. diff --git a/tests/defs b/tests/defs index 2439846e0..44df0dc6e 100644 --- a/tests/defs +++ b/tests/defs @@ -40,7 +40,7 @@ eval `$libtool --config | grep '^CC='` # Disable usage of config.site for autoconf, unless DJGPP is present. # The DJGPP port of autoconf requires config.site, to work correctly. -if test -z $DJGPP; then +if test -z "$DJGPP"; then CONFIG_SITE=/nonexistent fi