Tag
Hash :
852e99bc
Author :
Date :
2002-05-30T06:05:05
fgrep -> $FGREP, egrep -> $EGREP
#! /bin/sh
# Test to make sure that automake includes the needed variables,
# but not too many.
. $srcdir/defs || exit 1
# Find the macros wanted by Automake.
$ACLOCAL || exit 1
# Create some dummy Makefile.in.
: > Makefile.am
$AUTOMAKE || exit 1
# We are definitely not needing a compiler or preprocessor.
$EGREP '^(CC|CPP|CXX|CXXCPP) =' Makefile.in && exit 1
exit 0