mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00

building to the tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84187 13f79535-47bb-0310-9956-ffa450edef68
9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/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
|