diff options
author | Manoj Kasichainula <manoj@apache.org> | 1999-11-30 00:47:33 +0100 |
---|---|---|
committer | Manoj Kasichainula <manoj@apache.org> | 1999-11-30 00:47:33 +0100 |
commit | c6b9cc45c1f244fc10c9b13a7feb3b94a52d1eef (patch) | |
tree | afe7354ba04d51440924c4ec08c9f7a1e1d0566b /build/config-stubs | |
parent | The first part of the big autoconf patch. This replaces a bunch of (diff) | |
download | apache2-c6b9cc45c1f244fc10c9b13a7feb3b94a52d1eef.tar.xz apache2-c6b9cc45c1f244fc10c9b13a7feb3b94a52d1eef.zip |
The second part of the big autoconf patch, which actually adds autoconf
building to the tree.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84187 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/config-stubs')
-rwxr-xr-x | build/config-stubs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/config-stubs b/build/config-stubs new file mode 100755 index 0000000000..aff00a57d4 --- /dev/null +++ b/build/config-stubs @@ -0,0 +1,8 @@ +#!/bin/sh + +dir=$1 +for stubdir in `find $dir -type d`; do + if [ -r $stubdir/config.m4 ]; then + echo "sinclude($stubdir/config.m4)" + fi +done |