Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 97e461b

Browse files
committed
Another tcl/tk fix.
1 parent df18ece commit 97e461b

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/Makefile.global.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.35 1998/02/22 20:02:11 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.36 1998/03/23 04:07:59 momjian Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -161,10 +161,8 @@ USE_TCL= @USE_TCL@
161161
# customize these to your site's needs
162162
#
163163
TCL_INCDIR= @TCL_INCDIR@
164-
TCL_LIBDIR= /usr/local/lib
165164
TCL_LIB= @TCL_LIB@
166165
TK_INCDIR= @TK_INCDIR@
167-
TK_LIBDIR= /usr/local/lib
168166
TK_LIB= @TK_LIB@
169167

170168
USE_PERL= @USE_PERL@

src/bin/pgtclsh/Makefile

Lines changed: 4 additions & 4 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.11 1998/02/22 20:02:28 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.12 1998/03/23 04:08:05 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -29,12 +29,12 @@ all: pgtclsh pgtksh
2929

3030
pgtclsh: pgtclAppInit.o
3131
$(CC) $(CFLAGS) -o $@ pgtclAppInit.o \
32-
$(LIBPGTCL) $(LIBPQ) -L$(TCL_LIBDIR) $(TCL_LIB) -lm $(LDFLAGS)
32+
$(LIBPGTCL) $(LIBPQ) $(TCL_LIB) -lm $(LDFLAGS)
3333

3434
pgtksh: pgtkAppInit.o
3535
$(CC) $(CFLAGS) -o $@ pgtkAppInit.o \
36-
$(LIBPGTCL) $(LIBPQ) -L$(TCL_LIBDIR) -L$(TK_LIBDIR) $(X_LIBS) \
37-
$(TK_LIB) $(TCL_LIB) $(X11_LIBS) -lm $(LDFLAGS)
36+
$(LIBPGTCL) $(LIBPQ) $(X_LIBS) $(TK_LIB) $(TCL_LIB) \
37+
$(X11_LIBS) -lm $(LDFLAGS)
3838

3939
install: pgtclsh pgtksh
4040
$(INSTALL) $(INSTL_EXE_OPTS) pgtclsh $(DESTDIR)$(BINDIR)/pgtclsh

0 commit comments

Comments
 (0)