From c52bafca45dedfc1656ab8489d831ff544f0d1be Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 19 Jan 2006 20:45:29 +0000 Subject: [PATCH] Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path. --- src/makefiles/Makefile.cygwin | 4 ++-- src/makefiles/Makefile.win32 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin index 28b9773ba6..80ece2b804 100644 --- a/src/makefiles/Makefile.cygwin +++ b/src/makefiles/Makefile.cygwin @@ -1,8 +1,8 @@ -# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.7 2006/01/19 20:00:54 momjian Exp $ +# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.8 2006/01/19 20:45:29 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 cccaa37221..36b4e802bb 100644 --- a/src/makefiles/Makefile.win32 +++ b/src/makefiles/Makefile.win32 @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.8 2006/01/19 20:00:54 momjian Exp $ +# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.9 2006/01/19 20:45:29 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