]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path.
authorBruce Momjian <bruce@momjian.us>
Thu, 19 Jan 2006 20:45:20 +0000 (20:45 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 19 Jan 2006 20:45:20 +0000 (20:45 +0000)
src/makefiles/Makefile.cygwin
src/makefiles/Makefile.win32

index c01111a4a362d2ffb50a74a0cfc533ac5370dc07..6d47c668d40c949c8aebe81cae4c4c34bea352d9 100644 (file)
@@ -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
index f61473ad1d7b17fbeb6e1a9dfa10d12c25609632..1292c0bf91f86b3a0f9e8ecea01fb83a1680e9d9 100644 (file)
@@ -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