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
nothing
[automake.git]
/
tests
/
extra2.test
blob
27a6f0eb5a34d7e58d7b06e300d500641d9e0335
1
#! /bin/sh
2
3
# Check to make sure EXTRA_foo_SOURCES not defined unnecessarily.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>>
configure.
in
<<
'END'
8
AC_PROG_CC
9
END
10
11
cat
>
Makefile.am
<<
'END'
12
bin_PROGRAMS
=
foo
13
END
14
15
$AUTOMAKE
||
exit
1
16
17
grep
EXTRA_foo_SOURCES Makefile.
in
&&
exit
1
18
exit
0