diff options
author | Tom Lane | 2006-11-28 05:47:16 +0000 |
---|---|---|
committer | Tom Lane | 2006-11-28 05:47:16 +0000 |
commit | 6db9d267276cb596422c110f2d4e50dffd1a4a45 (patch) | |
tree | 6aaab46933670476d83b4da5453114563e613db0 | |
parent | 2f523a6f53e5929b8b72df620a16e3981488eac0 (diff) |
Add $(CFLAGS) to the simplified build rule for .so libraries on Darwin.
Arguably we should do this on *all* platforms, but for the moment I'll be
conservative and just do it where it's demonstrably needed. Per report
from Brian Wipf.
-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 9e254ee04b0..9f761d4b4bb 100644 --- a/src/makefiles/Makefile.darwin +++ b/src/makefiles/Makefile.darwin @@ -13,6 +13,6 @@ endif # Rule for building shared libs (currently used only for regression test # shlib ... should go away, since this is not really enough knowledge) %.so: %.o - $(CC) -bundle -o $@ $< $(BE_DLLLIBS) + $(CC) $(CFLAGS) -bundle -o $@ $< $(BE_DLLLIBS) sqlmansect = 7 |