about summary refs log tree commit diff
path: root/Util/preconfig
blob: 38d92634a8f7aafb9263c6c3f43efa353ce12985 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

find . \( -name '?*.*' -prune \) -o  -name .preconfig -print  | (
    while read pre; do
	cmd=`echo $pre | sed 's,^,cd ,;s,/\([^/]*\)$, \&\& ./\1,'`
	echo >&2 "$cmd"
	if ( eval "$cmd" ); then :; else
	    echo "$0: $pre failed (status $?)"
	    exit 1
	fi
    done
)

exit 0