+2000-10-24 Akim Demaille <akim@epita.fr>
+
+ * tests/tools.m4 (Syntax of the scripts): Specify the path to the
+ tested program, some shells don't honor the PATH with `sh PROG'.
+
2000-10-23 Akim Demaille <akim@epita.fr>
Since GNU M4 now comes with its libm4 (binary), to avoid
]])
if /bin/sh ./syntax.sh; then
- AT_CHECK([/bin/sh -n autoconf], 0)
- AT_CHECK([/bin/sh -n autoreconf], 0)
- AT_CHECK([/bin/sh -n autoupdate], 0)
- AT_CHECK([/bin/sh -n autoreconf], 0)
- AT_CHECK([/bin/sh -n ifnames], 0)
+ # Specify the path to the tool, some shells don't honor PATH
+ # when running `sh PROG'.
+ AT_CHECK([/bin/sh -n ../autoconf], 0)
+ AT_CHECK([/bin/sh -n ../autoreconf], 0)
+ AT_CHECK([/bin/sh -n ../autoupdate], 0)
+ AT_CHECK([/bin/sh -n ../autoreconf], 0)
+ AT_CHECK([/bin/sh -n ../ifnames], 0)
fi
AT_CLEANUP