mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-27 01:49:56 +08:00
* autoheader.sh (debug): Initialize to `false', not 0.
This commit is contained in:
parent
5ad32e051d
commit
b62028d508
@ -1,3 +1,7 @@
|
||||
2000-02-08 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* autoheader.sh (debug): Initialize to `false', not 0.
|
||||
|
||||
2000-02-08 Akim Demaille <akim@epita.fr>
|
||||
|
||||
Fix a bug: `libm4::define' was incorrectly registered.
|
||||
|
@ -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 <<EOF >$tmpout
|
||||
|
@ -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 <<EOF >$tmpout
|
||||
|
@ -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 <<EOF >$tmpout
|
||||
|
Loading…
Reference in New Issue
Block a user