summaryrefslogtreecommitdiffstats
path: root/build/config-stubs
diff options
context:
space:
mode:
authorManoj Kasichainula <manoj@apache.org>1999-11-30 00:47:33 +0100
committerManoj Kasichainula <manoj@apache.org>1999-11-30 00:47:33 +0100
commitc6b9cc45c1f244fc10c9b13a7feb3b94a52d1eef (patch)
treeafe7354ba04d51440924c4ec08c9f7a1e1d0566b /build/config-stubs
parentThe first part of the big autoconf patch. This replaces a bunch of (diff)
downloadapache2-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-xbuild/config-stubs8
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