summaryrefslogtreecommitdiff
path: root/helpers/config-stubs
blob: aff00a57d48c27562c2f2c1a75f0125aa72ab740 (plain)
1
2
3
4
5
6
7
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