Line | |
---|
1 | #! /bin/sh
|
---|
2 |
|
---|
3 | # Test to make sure line numbers are correct in some error reports.
|
---|
4 |
|
---|
5 | . $srcdir/defs || exit 1
|
---|
6 |
|
---|
7 | echo 'AM_CONDITIONAL(FOO, true)' >> configure.in
|
---|
8 |
|
---|
9 | cat > Makefile.am << 'END'
|
---|
10 | # flag to tell us if apache dir is a source distribution
|
---|
11 | APACHE_DIR_IS_SRC = @APACHE_DIR_IS_SRC@
|
---|
12 |
|
---|
13 | # we only need to descend into the c dir if we're doing a 1.3 DSO configuration
|
---|
14 | ifeq ("${APACHE_DIR_IS_SRC}","yes")
|
---|
15 | SUBDIRS = java
|
---|
16 | else
|
---|
17 | SUBDIRS = c java
|
---|
18 | endif
|
---|
19 | END
|
---|
20 |
|
---|
21 | $AUTOMAKE > out 2>&1 && exit 1
|
---|
22 | grep :7: out
|
---|
Note:
See
TracBrowser
for help on using the repository browser.