don't use $< in non-suffix rules
[automake.git] / tests / scripts.test
blob7ef1b021c5c9fb105557f575b6fef65a4dee0d3e
1 #! /bin/sh
3 # Test for bug reported by Jim Meyering.
4 # AM_PROG_INSTALL was required when only noinst_SCRIPTS was defined.
6 . $srcdir/defs || exit 1
8 cat > configure.in << 'END'
9 PACKAGE=nonesuch
10 VERSION=nonesuch
11 AC_ARG_PROGRAM
12 AC_PROG_INSTALL
13 AC_OUTPUT(Makefile)
14 END
16 cat > Makefile.am << 'END'
17 noinst_SCRIPTS = foo
18 END
20 $AUTOMAKE