Tag
Hash :
852e99bc
Author :
Date :
2002-05-30T06:05:05
fgrep -> $FGREP, egrep -> $EGREP
#! /bin/sh
# Test to make sure all-local and other -local targets work correctly.
. $srcdir/defs || exit 1
for target in all install-exec install-data uninstall; do
echo "Doing $target"
echo "${target}-local:" > Makefile.am
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
$FGREP "${target}-local ${target}-local" Makefile.in && exit 1
done
exit 0