blob: 95491d7279d4999da8de79dd4d005aef53cec545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if [ -f @TCL_CONFIG_SH@ ]; then
. @TCL_CONFIG_SH@
else
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
set | grep '^TCL' > Makefile.tcldefs
exit 0
|