From eb4517ca2677c0b8403a4923ecd650c64e52d445 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 19 Jan 2006 20:45:20 +0000 Subject: [PATCH] Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path. --- src/makefiles/Makefile.cygwin | 2 +- src/makefiles/Makefile.win32 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin index a1563a6722..e3c3fafdc8 100644 --- a/src/makefiles/Makefile.cygwin +++ b/src/makefiles/Makefile.cygwin @@ -2,7 +2,7 @@ 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 96d2c50b52..e55f26b683 100644 --- a/src/makefiles/Makefile.win32 +++ b/src/makefiles/Makefile.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 -- 2.39.5