summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2000-09-30 10:45:17 +0000
committerPeter Eisentraut2000-09-30 10:45:17 +0000
commit31444bc888a6e457084d20a71155619a153ec384 (patch)
tree921b2d3702c1e09965ae55878d01bb3a7dbf2564
parent2ffe1494e0a604ee32354196aab1cd2876ea873b (diff)
fix shell bug
-rw-r--r--config/tcl.m44
-rwxr-xr-xconfigure6
2 files changed, 5 insertions, 5 deletions
diff --git a/config/tcl.m4 b/config/tcl.m4
index 21fd2d89f9..f022698808 100644
--- a/config/tcl.m4
+++ b/config/tcl.m4
@@ -23,7 +23,7 @@ if test -z "$TCL_CONFIG_SH"; then
set X `echo 'puts $auto_path' | $TCLSH`; shift
fi
- for pgac_dir; do
+ for pgac_dir do
if test -r "$pgac_dir/tclConfig.sh"; then
TCL_CONFIG_SH=$pgac_dir/tclConfig.sh
break
@@ -57,7 +57,7 @@ if test -z "$TK_CONFIG_SH"; then
set X `echo 'puts $auto_path' | $TCLSH`; shift
fi
- for pgac_dir; do
+ for pgac_dir do
if test -r "$pgac_dir/tkConfig.sh"; then
TK_CONFIG_SH=$pgac_dir/tkConfig.sh
break
diff --git a/configure b/configure
index 01eae515d2..5ba23f2391 100755
--- a/configure
+++ b/configure
@@ -2552,7 +2552,7 @@ mkinstalldirs="\$(SHELL) \$(top_srcdir)/config/mkinstalldirs"
-for ac_prog in mawk gawk nawk awk
+for ac_prog in gawk mawk nawk awk
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
@@ -7033,7 +7033,7 @@ if test -z "$TCL_CONFIG_SH"; then
set X `echo 'puts $auto_path' | $TCLSH`; shift
fi
- for pgac_dir; do
+ for pgac_dir do
if test -r "$pgac_dir/tclConfig.sh"; then
TCL_CONFIG_SH=$pgac_dir/tclConfig.sh
break
@@ -7066,7 +7066,7 @@ if test -z "$TK_CONFIG_SH"; then
set X `echo 'puts $auto_path' | $TCLSH`; shift
fi
- for pgac_dir; do
+ for pgac_dir do
if test -r "$pgac_dir/tkConfig.sh"; then
TK_CONFIG_SH=$pgac_dir/tkConfig.sh
break