From: Akim Demaille Date: Tue, 8 Feb 2000 17:23:25 +0000 (+0000) Subject: * autoheader.sh (debug): Initialize to `false', not 0. X-Git-Tag: autoconf-2.50~1186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b62028d508be3b462b5f631c4d254dcf83e97d6b;p=thirdparty%2Fautoconf.git * autoheader.sh (debug): Initialize to `false', not 0. --- diff --git a/ChangeLog b/ChangeLog index 185c93e73..29e5d4dcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-02-08 Akim Demaille + + * autoheader.sh (debug): Initialize to `false', not 0. + 2000-02-08 Akim Demaille Fix a bug: `libm4::define' was incorrectly registered. diff --git a/autoheader.in b/autoheader.in index 7746a16c3..70bbefc11 100644 --- a/autoheader.in +++ b/autoheader.in @@ -80,7 +80,7 @@ esac ac_LF_and_DOT=`echo; echo .` localdir=. -debug=0 +debug=false # Basename for temporary files. ah_base=ah$$ @@ -181,7 +181,7 @@ case "$config_h" in esac tmpout=$ah_base.out -if test $debug -eq 0; then trap "rm -f $ah_base*; exit 1" 1 2 15; fi +$debug || trap "rm -f $ah_base*; exit 1" 1 2 15 # Don't write "do not edit" -- it will get copied into the # config.h, which it's ok to edit. cat <$tmpout diff --git a/autoheader.sh b/autoheader.sh index 7746a16c3..70bbefc11 100644 --- a/autoheader.sh +++ b/autoheader.sh @@ -80,7 +80,7 @@ esac ac_LF_and_DOT=`echo; echo .` localdir=. -debug=0 +debug=false # Basename for temporary files. ah_base=ah$$ @@ -181,7 +181,7 @@ case "$config_h" in esac tmpout=$ah_base.out -if test $debug -eq 0; then trap "rm -f $ah_base*; exit 1" 1 2 15; fi +$debug || trap "rm -f $ah_base*; exit 1" 1 2 15 # Don't write "do not edit" -- it will get copied into the # config.h, which it's ok to edit. cat <$tmpout diff --git a/bin/autoheader.in b/bin/autoheader.in index 7746a16c3..70bbefc11 100644 --- a/bin/autoheader.in +++ b/bin/autoheader.in @@ -80,7 +80,7 @@ esac ac_LF_and_DOT=`echo; echo .` localdir=. -debug=0 +debug=false # Basename for temporary files. ah_base=ah$$ @@ -181,7 +181,7 @@ case "$config_h" in esac tmpout=$ah_base.out -if test $debug -eq 0; then trap "rm -f $ah_base*; exit 1" 1 2 15; fi +$debug || trap "rm -f $ah_base*; exit 1" 1 2 15 # Don't write "do not edit" -- it will get copied into the # config.h, which it's ok to edit. cat <$tmpout