aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pl/tcl/mkMakefile.tcldefs.sh.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pl/tcl/mkMakefile.tcldefs.sh.in b/src/pl/tcl/mkMakefile.tcldefs.sh.in
new file mode 100644
index 00000000000..95491d7279d
--- /dev/null
+++ b/src/pl/tcl/mkMakefile.tcldefs.sh.in
@@ -0,0 +1,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