]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
authorAkim Demaille <akim@epita.fr>
Fri, 17 Aug 2001 14:46:05 +0000 (14:46 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 17 Aug 2001 14:46:05 +0000 (14:46 +0000)
`$0.log' as for projects where testsuite is in src, we'd have
testsuite.log created in src.

ChangeLog
lib/autotest/general.m4

index 32caca347438000ee63d3908f6c5b8afb502276d..75ca754e0a8829e3930081b19931003d555e90d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-08-17  Akim Demaille  <akim@epita.fr>
+
+       * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
+       `$0.log' as for projects where testsuite is in src, we'd have
+       testsuite.log created in src.
+
 2001-08-17  Akim Demaille  <akim@epita.fr>
 
        * bin/autom4te.in (&parse_args): Recognize --normalize.
index 5a0c415dc1fc2f2ddeea4a794449de2fc4865679..aaa11055bddf044c7d8298bf0efdb0a9ae4e4e4e 100644 (file)
@@ -135,7 +135,7 @@ m4_divert([OPTIONS])
 while test $[#] -gt 0; do
   case $[1] in
     --help | -h) at_help=: ;;
-    --version) echo "$[0] ($at_package) $at_version"; exit 0 ;;
+    --version) echo "$as_me ($at_package) $at_version"; exit 0 ;;
 
     -d) at_debug=:;;
     -e) at_stop_on_error=:;;
@@ -220,7 +220,7 @@ fi
 if $at_debug; then
   exec 6>/dev/null
 else
-  exec 6>$[0].log
+  exec 6>$as_me.log
   {
     AS_BOX([Test suite log for $at_package $at_version])
     echo
@@ -347,7 +347,7 @@ elif test $at_debug = false; then
   echo 'case the test suite provides a good starting point.'
   echo
   echo 'Now, failed tests will be executed again, verbosely, and logged'
-  echo 'in the file '$[0]'.log.'
+  echo 'in the file '$as_me'.log.'
 
   {
     echo
@@ -371,11 +371,11 @@ elif test $at_debug = false; then
     echo
   } >&6
 
-  $SHELL $[0] -v -d $at_fail_list 2>&1 | tee -a $[0].log
-  AS_BOX([$[0].log is created])
+  $SHELL $[0] -v -d $at_fail_list 2>&1 | tee -a $as_me.log
+  AS_BOX([$as_me.log is created])
 
   echo
-  echo "Please send \`$[0].log' to <$at_bugreport> together with all"
+  echo "Please send \`$as_me.log' to <$at_bugreport> together with all"
   echo "the information you think might help."
   exit 1
 fi