1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-20 00:54:03 +02:00

Initial revision

This commit is contained in:
Tanaka Akira 1999-12-20 14:01:46 +00:00
parent c785eb610a
commit 06d21c5875
2 changed files with 21 additions and 0 deletions

7
.preconfig Executable file
View File

@ -0,0 +1,7 @@
#! /bin/sh
set -e
autoconf
autoheader
echo > stamp-h.in

14
Util/preconfig Executable file
View File

@ -0,0 +1,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