Skip to content

Commit 248c9bd

Browse files
committed
Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path for AIX and Darwin.
1 parent c52bafc commit 248c9bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/makefiles/Makefile.aix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ IMPSUFF= .imp
2222
POSTGRES_IMP= postgres$(IMPSUFF)
2323

2424
ifdef PGXS
25-
BE_DLLLIBS= -Wl,-bI:$(DESTDIR)$(bindir)/postgres/$(POSTGRES_IMP)
25+
BE_DLLLIBS= -Wl,-bI:$(bindir)/postgres/$(POSTGRES_IMP)
2626
else
2727
BE_DLLLIBS= -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP)
2828
endif

src/makefiles/Makefile.darwin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DLSUFFIX = .so
55
CFLAGS_SL =
66

77
ifdef PGXS
8-
BE_DLLLIBS= -bundle_loader $(DESTDIR)$(bindir)/postgres
8+
BE_DLLLIBS= -bundle_loader $(bindir)/postgres
99
else
1010
BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres
1111
endif

0 commit comments

Comments
 (0)