Skip to content

Commit a13b3f8

Browse files
committed
add missing files
1 parent be0b6c1 commit a13b3f8

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
if [ ! -f @TK_CONFIG_SH@ ]; then
3+
echo "@TK_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+
. @TK_CONFIG_SH@
10+
11+
cat @TK_CONFIG_SH@ |
12+
egrep '^TK_' |
13+
while read inp
14+
do
15+
eval eval echo $inp
16+
done >Makefile.tkdefs
17+
18+
exit 0

0 commit comments

Comments
 (0)