* tests/atgeneral.m4 (AT_INIT): Use ${CONFIG_SHELL-/bin/sh}

to run the testsuite from the debug scripts.
Suggested by Alexandre Oliva.
This commit is contained in:
Pavel Roskin 2000-12-02 00:46:57 +00:00
parent c76c5e9199
commit 93c61512d9
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-12-01 Pavel Roskin <proski@gnu.org>
* 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 <akim@epita.fr>
* doc/autoconf.texi (Assignments): Don't read $? after an

View File

@ -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

View File

@ -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