diff options
author | Bruce Momjian | 1998-10-18 04:16:08 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-10-18 04:16:08 +0000 |
commit | f49cf6d09448a9bd6c869923315ab27f22c17c64 (patch) | |
tree | c8c769881e88b09c21037450416461b1f334da1a /src/bin/pgtclsh | |
parent | 8ccf86bf32d72c2b8f234ee328caf79966f5df9c (diff) |
The TCL/TK configuration cleanup patches I submitted have the following
problem:
'tclsh' still had to be found even if --with-libs (or
--with-libraries) was
specified to configure.
--with-libs is really an overloaded option. It really should only be used
to specify additions directories to search in order to file needed
libraries. It was also being used to locate the *Config.sh files.
Billy G. Allie
Diffstat (limited to 'src/bin/pgtclsh')
-rw-r--r-- | src/bin/pgtclsh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgtclsh/Makefile b/src/bin/pgtclsh/Makefile index c9731376481..325c70e3350 100644 --- a/src/bin/pgtclsh/Makefile +++ b/src/bin/pgtclsh/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.22 1998/10/15 15:58:15 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.23 1998/10/18 04:16:08 momjian Exp $ # #------------------------------------------------------------------------- @@ -69,7 +69,7 @@ install_tk: pgtksh $(INSTALL) $(INSTL_EXE_OPTS) pgtksh $(BINDIR)/pgtksh clean: - rm -f pgtclAppInit.o pgtkAppInit.o pgtclsh pgtksh + rm -f *.o Makefile.t*defs pgtclsh pgtksh dep depend: $(CC) -MM $(CFLAGS) *.c > depend |