From: Tom Lane Date: Sat, 3 Feb 2007 17:27:11 +0000 (+0000) Subject: Use -Wl for linker switches on freebsd --- back-port of an 8.0 change. X-Git-Tag: REL7_4_17~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0083ccfde0cfc5028afe8c3a6d647f627516b61;p=postgresql 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. --- diff --git a/src/makefiles/Makefile.freebsd b/src/makefiles/Makefile.freebsd index 90543b7016..3acf890e08 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