Tag
Hash :
852e99bc
Author :
Date :
2002-05-30T06:05:05
fgrep -> $FGREP, egrep -> $EGREP
#! /bin/sh
# Test for bug reported in PR 2.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT
AM_INIT_AUTOMAKE(nonesuch, nonesuch)
AC_OUTPUT(README.foo:templ/README.foo.in Makefile)
END
: > Makefile.am
mkdir templ
: > templ/README.foo.in
$ACLOCAL || exit 1
$AUTOMAKE || exit 1
# Look for mkinstalldirs invocation for the templ directory.
# We use the `[^/]' to avoid matching `templ/README.foo.in'.
$EGREP 'mkinstalldirs.*templ([^/]|$)' Makefile.in