* configure.in: Updated to 1.4d and released.
[automake.git] / tests / libobj5.test
blob8ad45e9673022967b1f486660c10a5d50ccb4e72
1 #! /bin/sh
3 # Test to make sure AC_REPLACE_FUNCS works across lines. Report from
4 # Jim Meyering.
6 . $srcdir/defs || exit 1
8 cat > Makefile.am << 'END'
9 bin_PROGRAMS = joe
10 LDADD = @LIBOBJS@
11 END
13 cat >> configure.in << 'END'
14 AC_PROG_CC
15 AC_REPLACE_FUNCS(\
16 foo)
17 END
19 : > foo.c
21 $AUTOMAKE || exit 1
22 fgrep foo.c Makefile.in