typo + new comment
[automake.git] / tests / libobj5.test
blob9af320d59a0f3a36bb56a1dd04476247fc1055f9
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 $ACLOCAL || exit 1
22 $AUTOMAKE || exit 1
23 fgrep foo.c Makefile.in