[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Backquotes in quotes in backquotes (Was: Success (mostly) with the tests
From: |
Akim Demaille |
Subject: |
Backquotes in quotes in backquotes (Was: Success (mostly) with the testsuite) |
Date: |
29 Nov 2000 17:13:31 +0100 |
User-agent: |
Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) |
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 <address@hidden>
* 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 address@hidden
Chris Torek address@hidden
Cort Dougan address@hidden
+Daniele Arena address@hidden
Dave Adams address@hidden
Dave Love address@hidden
David Morgan address@hidden
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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Backquotes in quotes in backquotes (Was: Success (mostly) with the testsuite),
Akim Demaille <=