diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-07-05 23:15:56 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-07-05 23:15:56 +0000 |
| commit | f9e9da666423f38d9c0f97277cf4e21973608baf (patch) | |
| tree | 31ca431a9ed6a347619c80f5364b6ee9df8ad779 /src/makefiles/Makefile.darwin | |
| parent | 291a9577454a63f99b5537e48a3dceae6d35ea8d (diff) | |
| download | postgresql-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.darwin | 2 |
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 $@ $< |
