]> 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:34 +0000 (20:45 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 19 Jan 2006 20:45:34 +0000 (20:45 +0000)
src/makefiles/Makefile.cygwin
src/makefiles/Makefile.win32

index 6d1726192876baa0fefed1dd84d34aa64eca1716..3db2756bd5c7b0a963b127e1b692599fe56b0e99 100644 (file)
@@ -1,8 +1,8 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6.6.1 2006/01/19 20:01:01 momjian Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6.6.2 2006/01/19 20:45:34 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 d1819b3995331d41f23df7d0ff6dabbd0bf8c751..080d762b752b6def05200bb65058a4df8274e247 100644 (file)
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7.6.1 2006/01/19 20:01:01 momjian Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7.6.2 2006/01/19 20:45:34 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