diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-02-16 11:24:38 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-02-16 11:24:38 -0500 |
commit | 56caaf195e996919088d532832a2a57ca33431b2 (patch) | |
tree | 67d0bc4dc2b573f2879f86387015b4275d98daaf /src | |
parent | cefd3e507d7cc402225e5da100d05dcafb90c0bd (diff) | |
download | postgresql-56caaf195e996919088d532832a2a57ca33431b2.tar.gz postgresql-56caaf195e996919088d532832a2a57ca33431b2.zip |
On Windows, expect to find Tcl DLL in bin directory not lib directory.
Still another step in the continuing saga of trying to get
--disable-auto-import to work.
Hiroshi Inoue
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/tcl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index e0fb13e56eb..2ab2a2791bb 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -53,7 +53,7 @@ PSQLDIR = $(bindir) ifeq ($(PORTNAME), win32) tclwithver = $(subst -l,,$(filter -l%, $(TCL_LIB_SPEC))) -TCLDLL = $(subst -L,,$(filter -L%, $(TCL_LIB_SPEC)))/$(tclwithver).dll +TCLDLL = $(dir $(TCLSH))/$(tclwithver).dll OBJS += lib$(tclwithver).a |