summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.freebsd
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-11-19 00:41:39 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-11-19 00:41:39 +0000
commita9ddd649df46afde8f26dd9f85f05292e8da1f4b (patch)
treed1dd63d725cd92adc627418d73ea76e31ce93da4 /src/makefiles/Makefile.freebsd
parentb6038484f8c9bb2760c4a5c285b67d4eebeb30b4 (diff)
downloadpostgresql-a9ddd649df46afde8f26dd9f85f05292e8da1f4b.tar.gz
Modify the platform-specific makefiles so that macro 'rpath' is defined
in terms of macro 'rpathdir', as I proposed a few weeks ago. In itself this commit shouldn't change the behavior at all, but it opens the door to using special rpaths for the PL shared libraries, as seems to be needed for plperl in particular.
Diffstat (limited to 'src/makefiles/Makefile.freebsd')
-rw-r--r--src/makefiles/Makefile.freebsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.freebsd b/src/makefiles/Makefile.freebsd
index a9e59604d5..8f41ea4d86 100644
--- a/src/makefiles/Makefile.freebsd
+++ b/src/makefiles/Makefile.freebsd
@@ -2,7 +2,7 @@ AROPT = cr
ifdef ELF_SYSTEM
export_dynamic = -export-dynamic
-rpath = -R$(libdir)
+rpath = -R$(rpathdir)
shlib_symbolic = -Wl,-Bsymbolic -lc
endif