repo.or.cz
/
automake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
clean fixlet
[automake.git]
/
tests
/
libobj5.test
blob
8ad45e9673022967b1f486660c10a5d50ccb4e72
1
#! /bin/sh
2
3
# Test to make sure AC_REPLACE_FUNCS works across lines. Report from
4
# Jim Meyering.
5
6
.
$srcdir
/
defs ||
exit
1
7
8
cat
>
Makefile.am
<<
'END'
9
bin_PROGRAMS
=
joe
10
LDADD
=
@LIBOBJS@
11
END
12
13
cat
>>
configure.
in
<<
'END'
14
AC_PROG_CC
15
AC_REPLACE_FUNCS
(
\
16
foo
)
17
END
18
19
: >
foo.c
20
21
$AUTOMAKE
||
exit
1
22
fgrep foo.c Makefile.
in