blob: e1760545f99bd612ec7bf31c2b521d4a2245f43b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
: doSH is obsolete. Just use Configure -S
:
if test -f Configure ; then TOP=.;
elif test -f ../Configure ; then TOP=..;
elif test -f ../../Configure ; then TOP=../..;
elif test -f ../../../Configure ; then TOP=../../..;
elif test -f ../../../../Configure ; then TOP=../../../..;
else
echo "Can't find Configure" ; exit 1
fi
sh $TOP/Configure -S
|