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

This commit is contained in:
Bruce Momjian 2006-01-19 21:19:12 +00:00
parent c52bafca45
commit 248c9bdfcb
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ IMPSUFF= .imp
POSTGRES_IMP= postgres$(IMPSUFF)
ifdef PGXS
BE_DLLLIBS= -Wl,-bI:$(DESTDIR)$(bindir)/postgres/$(POSTGRES_IMP)
BE_DLLLIBS= -Wl,-bI:$(bindir)/postgres/$(POSTGRES_IMP)
else
BE_DLLLIBS= -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP)
endif

View File

@ -5,7 +5,7 @@ DLSUFFIX = .so
CFLAGS_SL =
ifdef PGXS
BE_DLLLIBS= -bundle_loader $(DESTDIR)$(bindir)/postgres
BE_DLLLIBS= -bundle_loader $(bindir)/postgres
else
BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres
endif