* automake.texi (Macros): Document AM_PROG_AS.
[automake.git] / tests / comment3.test
blob01d83231922917b5e93b5c297a5b9d0b4e06709b
1 #! /bin/sh
3 # Make sure that `#' after a tab is a failure.
4 # The Tru64 Unix V5.1 system make will pass these to the
5 # shell, which in turn can't find `#' as a command.
6 # Sigh. Some vendors must be destroyed.
8 . $srcdir/defs || exit 1
10 cat > Makefile.am << 'END'
11 install-data-local:
12 # Tru64 Unix must die
13 END
15 $AUTOMAKE && exit 1
16 exit 0