Skip to content

Commit 333cbc2

Browse files
committed
fix shell bug
1 parent 06c3766 commit 333cbc2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

config/tcl.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Header: /cvsroot/pgsql/config/tcl.m4,v 1.1 2000/09/25 22:22:53 petere Exp $
1+
# $Header: /cvsroot/pgsql/config/tcl.m4,v 1.2 2000/09/30 10:45:17 petere Exp $
22

33
# Autoconf macros to check for Tcl related things
44

@@ -23,7 +23,7 @@ if test -z "$TCL_CONFIG_SH"; then
2323
set X `echo 'puts $auto_path' | $TCLSH`; shift
2424
fi
2525
26-
for pgac_dir; do
26+
for pgac_dir do
2727
if test -r "$pgac_dir/tclConfig.sh"; then
2828
TCL_CONFIG_SH=$pgac_dir/tclConfig.sh
2929
break
@@ -57,7 +57,7 @@ if test -z "$TK_CONFIG_SH"; then
5757
set X `echo 'puts $auto_path' | $TCLSH`; shift
5858
fi
5959
60-
for pgac_dir; do
60+
for pgac_dir do
6161
if test -r "$pgac_dir/tkConfig.sh"; then
6262
TK_CONFIG_SH=$pgac_dir/tkConfig.sh
6363
break

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,7 @@ mkinstalldirs="\$(SHELL) \$(top_srcdir)/config/mkinstalldirs"
25522552

25532553

25542554

2555-
for ac_prog in mawk gawk nawk awk
2555+
for ac_prog in gawk mawk nawk awk
25562556
do
25572557
# Extract the first word of "$ac_prog", so it can be a program name with args.
25582558
set dummy $ac_prog; ac_word=$2
@@ -7033,7 +7033,7 @@ if test -z "$TCL_CONFIG_SH"; then
70337033
set X `echo 'puts $auto_path' | $TCLSH`; shift
70347034
fi
70357035

7036-
for pgac_dir; do
7036+
for pgac_dir do
70377037
if test -r "$pgac_dir/tclConfig.sh"; then
70387038
TCL_CONFIG_SH=$pgac_dir/tclConfig.sh
70397039
break
@@ -7066,7 +7066,7 @@ if test -z "$TK_CONFIG_SH"; then
70667066
set X `echo 'puts $auto_path' | $TCLSH`; shift
70677067
fi
70687068

7069-
for pgac_dir; do
7069+
for pgac_dir do
70707070
if test -r "$pgac_dir/tkConfig.sh"; then
70717071
TK_CONFIG_SH=$pgac_dir/tkConfig.sh
70727072
break

0 commit comments

Comments
 (0)