Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path.

REL8_1_STABLE
Bruce Momjian 20 years ago
parent ab2cd7266b
commit 128cd9df38
  1. 4
      src/makefiles/Makefile.cygwin
  2. 4
      src/makefiles/Makefile.win32

@ -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

@ -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

Loading…
Cancel
Save