blob: a8c2cc374de976b3c5b8836fcb20c16f1508a066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
if [ ! -f @TCL_CONFIG_SH@ ]; then
echo "@TCL_CONFIG_SH@ not found"
echo "I need this file! Please make a symbolic link to this file"
echo "and start make again."
exit 1
fi
cat @TCL_CONFIG_SH@ |
egrep '^TCL_' |
while read inp
do
eval eval echo $inp
done >Makefile.tcldefs
exit 0
|