mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-07-22 08:21:02 +02:00
Initial revision
This commit is contained in:
parent
c785eb610a
commit
06d21c5875
2 changed files with 21 additions and 0 deletions
7
.preconfig
Executable file
7
.preconfig
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
autoconf
|
||||||
|
autoheader
|
||||||
|
echo > stamp-h.in
|
14
Util/preconfig
Executable file
14
Util/preconfig
Executable 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
|
Loading…
Reference in a new issue