summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.darwin
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-07-05 23:15:56 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2010-07-05 23:15:56 +0000
commitf9e9da666423f38d9c0f97277cf4e21973608baf (patch)
tree31ca431a9ed6a347619c80f5364b6ee9df8ad779 /src/makefiles/Makefile.darwin
parent291a9577454a63f99b5537e48a3dceae6d35ea8d (diff)
downloadpostgresql-f9e9da666423f38d9c0f97277cf4e21973608baf.tar.gz
Fix a few single-file (MODULES, not MODULE_big) contrib makefiles that were
supposing that they should set SHLIB_LINK rather than LDFLAGS_SL. Since these don't go through Makefile.shlib that was a no-op on most platforms. Also regularize the few platform-specific Makefiles that did pay attention to SHLIB_LINK: it seems that the real value of that is to pull in BE_DLLLIBS, so do that instead. Per buildfarm failures on cygwin.
Diffstat (limited to 'src/makefiles/Makefile.darwin')
-rw-r--r--src/makefiles/Makefile.darwin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.darwin b/src/makefiles/Makefile.darwin
index 2f6743ab14..4fa4954b36 100644
--- a/src/makefiles/Makefile.darwin
+++ b/src/makefiles/Makefile.darwin
@@ -10,4 +10,4 @@ endif
# Rule for building a shared library from a single .o file
%.so: %.o
- $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -bundle -o $@ $< $(BE_DLLLIBS)
+ $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -bundle $(BE_DLLLIBS) -o $@ $<