mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* tests/torture.at (AC_ARG_VAR): Set variables and export them
in separate statements for compatibility with Tru64 v5.1.
This commit is contained in:
parent
8cb3ac1b1c
commit
bd5eccd22e
@ -1,3 +1,8 @@
|
||||
2001-06-18 Nicolas Joly <njoly@pasteur.fr>
|
||||
|
||||
* tests/torture.at (AC_ARG_VAR): Set variables and export them
|
||||
in separate statements for compatibility with Tru64 v5.1.
|
||||
|
||||
2001-06-17 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
|
||||
|
@ -55,7 +55,7 @@ AT_CHECK([cat file], [], [`'
|
||||
|
||||
|
||||
# Set to `diamonds'.
|
||||
export precious=diamonds
|
||||
precious=diamonds; export precious
|
||||
AT_CHECK_CONFIGURE([--config-cache], [], [],
|
||||
[configure: WARNING: `precious' was not set in the previous run
|
||||
configure: WARNING: changes in the environment can compromise the build
|
||||
@ -72,7 +72,7 @@ AT_CHECK([cat file], [], [`diamonds'
|
||||
|
||||
|
||||
# Set to `apple of my eye'.
|
||||
export precious='apple of my eye'
|
||||
precious='apple of my eye'; export precious
|
||||
AT_CHECK_CONFIGURE([--config-cache], [], [],
|
||||
[configure: WARNING: `precious' has changed since the previous run:
|
||||
configure: WARNING: former value: diamonds
|
||||
|
Loading…
Reference in New Issue
Block a user