From: Pavel Roskin Date: Mon, 18 Jun 2001 16:14:10 +0000 (+0000) Subject: * tests/torture.at (AC_ARG_VAR): Set variables and export them X-Git-Tag: AUTOCONF-2.50a~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd5eccd22eba84d493813a249a1954b5d4209694;p=thirdparty%2Fautoconf.git * tests/torture.at (AC_ARG_VAR): Set variables and export them in separate statements for compatibility with Tru64 v5.1. --- diff --git a/ChangeLog b/ChangeLog index ce44a8b61..a774afcf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-06-18 Nicolas Joly + + * 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 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the diff --git a/tests/torture.at b/tests/torture.at index f975c84b8..6c7a5ed6d 100644 --- a/tests/torture.at +++ b/tests/torture.at @@ -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