+2000-11-29 Akim Demaille <akim@epita.fr>
+
+ * 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.
+
2000-11-29 Akim Demaille <akim@epita.fr>
QNX 4.2.5's expr always exits 1 when `:' is used with parens.
Christian Krone krischan@sql.de
Chris Torek torek@bsdi.com
Cort Dougan cort@cs.nmt.edu
+Daniele Arena daniele@ripe.net
Dave Adams adams@hpesdwa.fc.hp.com
Dave Love fx@gnu.org
David Morgan dmorgan@symark.com
-) 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
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])
-) 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
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])
-) 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
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])
-) 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
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])
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)