Commit 248c9bdf authored by Bruce Momjian's avatar Bruce Momjian

Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path for AIX and Darwin.

parent c52bafca
...@@ -22,7 +22,7 @@ IMPSUFF= .imp ...@@ -22,7 +22,7 @@ IMPSUFF= .imp
POSTGRES_IMP= postgres$(IMPSUFF) POSTGRES_IMP= postgres$(IMPSUFF)
ifdef PGXS ifdef PGXS
BE_DLLLIBS= -Wl,-bI:$(DESTDIR)$(bindir)/postgres/$(POSTGRES_IMP) BE_DLLLIBS= -Wl,-bI:$(bindir)/postgres/$(POSTGRES_IMP)
else else
BE_DLLLIBS= -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP) BE_DLLLIBS= -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP)
endif endif
......
...@@ -5,7 +5,7 @@ DLSUFFIX = .so ...@@ -5,7 +5,7 @@ DLSUFFIX = .so
CFLAGS_SL = CFLAGS_SL =
ifdef PGXS ifdef PGXS
BE_DLLLIBS= -bundle_loader $(DESTDIR)$(bindir)/postgres BE_DLLLIBS= -bundle_loader $(bindir)/postgres
else else
BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres
endif endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment