We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0b6c1 commit a13b3f8Copy full SHA for a13b3f8
src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in
@@ -0,0 +1,16 @@
1
+
2
+if [ ! -f @TCL_CONFIG_SH@ ]; then
3
+ echo "@TCL_CONFIG_SH@ not found"
4
+ echo "I need this file! Please make a symbolic link to this file"
5
+ echo "and start make again."
6
+ exit 1
7
+fi
8
9
+cat @TCL_CONFIG_SH@ |
10
+ egrep '^TCL_' |
11
+ while read inp
12
+ do
13
+ eval eval echo $inp
14
+ done >Makefile.tcldefs
15
16
+exit 0
src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in
@@ -0,0 +1,18 @@
+if [ ! -f @TK_CONFIG_SH@ ]; then
+ echo "@TK_CONFIG_SH@ not found"
+. @TK_CONFIG_SH@
+cat @TK_CONFIG_SH@ |
+ egrep '^TK_' |
+ done >Makefile.tkdefs
17
18
0 commit comments