summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-02-03 17:27:11 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-02-03 17:27:11 +0000
commitf0083ccfde0cfc5028afe8c3a6d647f627516b61 (patch)
tree4efe3a1a59bfd491ac51e47b07cff416908509f8 /src
parentde59c01f26edd8913d23870b858b2b79ada43e8e (diff)
Use -Wl for linker switches on freebsd --- back-port of an 8.0 change.
I think this will make buildfarm member herring go green in this branch.
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.freebsd4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.freebsd b/src/makefiles/Makefile.freebsd
index 90543b7016a..3acf890e08b 100644
--- a/src/makefiles/Makefile.freebsd
+++ b/src/makefiles/Makefile.freebsd
@@ -1,8 +1,8 @@
AROPT = cr
ifdef ELF_SYSTEM
-export_dynamic = -export-dynamic
-rpath = -R$(libdir)
+export_dynamic = -Wl,-export-dynamic
+rpath = -Wl,-R$(libdir)
shlib_symbolic = -Wl,-Bsymbolic -lc
endif