diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-28 05:45:43 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-11-28 05:45:43 +0000 |
commit | fa8e42dff1327a51f1075e1fcf5dc3e048353a11 (patch) | |
tree | 3ac2986720a41204584b6fff5ca5e3278c696e1d | |
parent | 796a3f373a6a19695f4d423beb38ace373874599 (diff) | |
download | postgresql-fa8e42dff1327a51f1075e1fcf5dc3e048353a11.tar.gz postgresql-fa8e42dff1327a51f1075e1fcf5dc3e048353a11.zip |
Add $(CFLAGS) to the simplified build rule for .so libraries on Darwin.
Arguably we should do this on *all* platforms, but for the moment Ill
-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 |