From: Pavel Roskin Date: Sat, 2 Dec 2000 00:46:57 +0000 (+0000) Subject: * tests/atgeneral.m4 (AT_INIT): Use ${CONFIG_SHELL-/bin/sh} X-Git-Tag: autoconf-2.50~357 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93c61512d93a8d80a79df84556da1327e50de431;p=thirdparty%2Fautoconf.git * tests/atgeneral.m4 (AT_INIT): Use ${CONFIG_SHELL-/bin/sh} to run the testsuite from the debug scripts. Suggested by Alexandre Oliva. --- diff --git a/ChangeLog b/ChangeLog index e153ab06b..894f61d87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-12-01 Pavel Roskin + + * tests/atgeneral.m4 (AT_INIT): Use ${CONFIG_SHELL-/bin/sh} + to run the testsuite from the debug scripts. + Suggested by Alexandre Oliva. + 2000-11-30 Akim Demaille * doc/autoconf.texi (Assignments): Don't read $? after an diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 37b6d2ca3..76d8052ba 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -265,7 +265,7 @@ elif test $at_debug = false; then for at_group in $at_failed_list; do echo $at_n " $at_group$at_c" ( echo "#! /bin/sh" - echo 'exec '"$[0]"' -v -d '"$at_group"' ${1+"$[@]"}' + echo 'exec ${CONFIG_SHELL-/bin/sh} '"$[0]"' -v -d '"$at_group"' ${1+"$[@]"}' echo 'exit 1' ) >debug-$at_group.sh chmod +x debug-$at_group.sh diff --git a/tests/atgeneral.m4 b/tests/atgeneral.m4 index 37b6d2ca3..76d8052ba 100644 --- a/tests/atgeneral.m4 +++ b/tests/atgeneral.m4 @@ -265,7 +265,7 @@ elif test $at_debug = false; then for at_group in $at_failed_list; do echo $at_n " $at_group$at_c" ( echo "#! /bin/sh" - echo 'exec '"$[0]"' -v -d '"$at_group"' ${1+"$[@]"}' + echo 'exec ${CONFIG_SHELL-/bin/sh} '"$[0]"' -v -d '"$at_group"' ${1+"$[@]"}' echo 'exit 1' ) >debug-$at_group.sh chmod +x debug-$at_group.sh