Tag
Hash :
4147ae68
Author :
Date :
1996-03-01T04:50:34
Allow extended range of install directories
#! /bin/sh
# This tests for a bug reported by Gord Matzigkeit.
# If config.h is not used, @CONFIG_INCLUDE_SPEC@ should not appear
# in Makefile.in.
. $srcdir/defs || exit 1
cat > Makefile.am << 'EOF'
bin_PROGRAMS = fred
EOF
$AUTOMAKE || exit 1
if grep '@CONFIG_INCLUDE_SPEC@' Makefile.in; then
exit 1
fi
exit 0