aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-01-19 21:19:15 +0000
committerBruce Momjian <bruce@momjian.us>2006-01-19 21:19:15 +0000
commit36cdb24f31821769bc7921563df86697ac8f3796 (patch)
tree506786ac78a049671e4f76e00a4611063b4403bf /src
parent128cd9df385d90a40c46dd277def9f17e571339e (diff)
downloadpostgresql-36cdb24f31821769bc7921563df86697ac8f3796.tar.gz
postgresql-36cdb24f31821769bc7921563df86697ac8f3796.zip
Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path for AIX and Darwin.
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.aix2
-rw-r--r--src/makefiles/Makefile.darwin2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.aix b/src/makefiles/Makefile.aix
index 3b21a74c92b..a9c64d71c54 100644
--- a/src/makefiles/Makefile.aix
+++ b/src/makefiles/Makefile.aix
@@ -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
diff --git a/src/makefiles/Makefile.darwin b/src/makefiles/Makefile.darwin
index 9d823a76a85..9e254ee04b0 100644
--- a/src/makefiles/Makefile.darwin
+++ b/src/makefiles/Makefile.darwin
@@ -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