Daniele, I'm applying the patch you need to be able to use CVS
Autoconf.  May I ask you if you could fetch CVS Autoconf and check
that the test suite succeeds?

Thanks a lot!

        Akim

Index: ChangeLog
from  Akim Demaille  <[EMAIL PROTECTED]>
        * acgeneral.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES): Don't use
        `... echo "error: \\\`$f'" ...`
        as it's not portable to BSDI 1.3.
        Do this instead:
        `... echo "error: $f" ...`
        Reported by Daniele Arena.

Index: THANKS
===================================================================
RCS file: /cvs/autoconf/THANKS,v
retrieving revision 1.45
diff -u -u -r1.45 THANKS
--- THANKS 2000/11/29 15:52:02 1.45
+++ THANKS 2000/11/29 16:03:33
@@ -26,6 +26,7 @@
 Christian Krone                [EMAIL PROTECTED]
 Chris Torek            [EMAIL PROTECTED]
 Cort Dougan            [EMAIL PROTECTED]
+Daniele Arena          [EMAIL PROTECTED]
 Dave Adams             [EMAIL PROTECTED]
 Dave Love              [EMAIL PROTECTED]
 David Morgan           [EMAIL PROTECTED]
Index: acgeneral.m4
===================================================================
RCS file: /cvs/autoconf/acgeneral.m4,v
retrieving revision 1.637
diff -u -u -r1.637 acgeneral.m4
--- acgeneral.m4 2000/11/29 10:09:44 1.637
+++ acgeneral.m4 2000/11/29 16:03:53
@@ -4179,7 +4179,7 @@
       -) echo $tmp/stdin ;;
       [[\\/$]]* | ?:[[\\/]]*)
          # Absolute
-         test -f "$f" || AC_MSG_ERROR([cannot find input file \\`$f'])
+         test -f "$f" || AC_MSG_ERROR([cannot find input file: $f])
          echo $f;;
       *) # Relative
          if test -f "$f"; then
@@ -4190,7 +4190,7 @@
            echo $ac_given_srcdir/$f
          else
            # /dev/null tree
-           AC_MSG_ERROR([cannot find input file \\`$f'])
+           AC_MSG_ERROR([cannot find input file: $f])
          fi;;
       esac
     done` || AS_EXIT([1])
@@ -4326,7 +4326,7 @@
       -) echo $tmp/stdin ;;
       [[\\/$]]* | ?:[[\\/]]*)
          # Absolute
-         test -f "$f" || AC_MSG_ERROR([cannot find input file \\`$f'])
+         test -f "$f" || AC_MSG_ERROR([cannot find input file: $f])
          echo $f;;
       *) # Relative
          if test -f "$f"; then
@@ -4337,7 +4337,7 @@
            echo $ac_given_srcdir/$f
          else
            # /dev/null tree
-           AC_MSG_ERROR([cannot find input file \\`$f'])
+           AC_MSG_ERROR([cannot find input file: $f])
          fi;;
       esac
     done` || AS_EXIT([1])
Index: tests/torture.at
===================================================================
RCS file: /cvs/autoconf/tests/torture.at,v
retrieving revision 1.6
diff -u -u -r1.6 torture.at
--- tests/torture.at 2000/11/29 10:12:05 1.6
+++ tests/torture.at 2000/11/29 16:03:57
@@ -70,7 +70,7 @@
 
 AT_CHECK_AUTOCONF
 AT_CHECK([./configure], 1, ignore,
-[[config.status: error: cannot find input file `nonexistent.in'
+[[config.status: error: cannot find input file: nonexistent.in
 ]])
 # Make sure that the output file doesn't exist
 AT_CHECK([test -f nonexistent], 1)

Reply via email to