Skip to content

Commit c954088

Browse files
committed
Back-patch fix for '.' not in PATH at build time, per SL Baur.
1 parent 6a3bbdf commit c954088

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/bin/pgtclsh/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.25 2000/03/08 01:58:21 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.25.2.1 2000/09/23 22:51:19 tgl Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -59,10 +59,10 @@ install_tk: pgtksh
5959
$(INSTALL) $(INSTL_EXE_OPTS) pgtksh $(BINDIR)/pgtksh
6060

6161
Makefile.tcldefs: mkMakefile.tcldefs.sh
62-
/bin/sh mkMakefile.tcldefs.sh
62+
/bin/sh ./mkMakefile.tcldefs.sh
6363

6464
Makefile.tkdefs: mkMakefile.tkdefs.sh
65-
/bin/sh mkMakefile.tkdefs.sh
65+
/bin/sh ./mkMakefile.tkdefs.sh
6666

6767
clean:
6868
rm -f *.o Makefile.t*defs pgtclsh pgtksh

src/pl/tcl/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for the pltcl shared object
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.14 2000/05/23 02:12:44 tgl Exp $
7+
# $Header: /cvsroot/pgsql/src/pl/tcl/Makefile,v 1.14.2.1 2000/09/23 22:51:18 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -124,7 +124,7 @@ endif
124124
#
125125

126126
Makefile.tcldefs: mkMakefile.tcldefs.sh
127-
/bin/sh mkMakefile.tcldefs.sh
127+
/bin/sh ./mkMakefile.tcldefs.sh
128128

129129
#
130130
# Clean

0 commit comments

Comments
 (0)