aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-01-19 20:45:20 +0000
committerBruce Momjian <bruce@momjian.us>2006-01-19 20:45:20 +0000
commit2f90c781e89f298988f1a12363711f39e320815f (patch)
treeda2d0444a99129dc62a522e01288c7e68d53ee8d /src
parenta290087cd104d8a0294f43235d7a5f12e8b5f11a (diff)
downloadpostgresql-2f90c781e89f298988f1a12363711f39e320815f.tar.gz
postgresql-2f90c781e89f298988f1a12363711f39e320815f.zip
Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path.
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.cygwin4
-rw-r--r--src/makefiles/Makefile.win324
2 files changed, 4 insertions, 4 deletions
diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin
index c01111a4a36..6d47c668d40 100644
--- a/src/makefiles/Makefile.cygwin
+++ b/src/makefiles/Makefile.cygwin
@@ -1,8 +1,8 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6.4.1 2006/01/19 20:01:32 momjian Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6.4.2 2006/01/19 20:45:20 momjian Exp $
DLLTOOL= dlltool
DLLWRAP= dllwrap
ifdef PGXS
-BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
+BE_DLLLIBS= -L$(libdir) -lpostgres
else
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
endif
diff --git a/src/makefiles/Makefile.win32 b/src/makefiles/Makefile.win32
index f61473ad1d7..1292c0bf91f 100644
--- a/src/makefiles/Makefile.win32
+++ b/src/makefiles/Makefile.win32
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7.4.1 2006/01/19 20:01:32 momjian Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7.4.2 2006/01/19 20:45:20 momjian Exp $
# Use replacement include files for those missing on Win32
override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
@@ -6,7 +6,7 @@ override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
DLLTOOL= dlltool
DLLWRAP= dllwrap
ifdef PGXS
-BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
+BE_DLLLIBS= -L$(libdir) -lpostgres
else
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
endif