mirror of
https://github.com/postgres/postgres.git
synced 2025-05-01 01:04:50 +03:00
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.
This commit is contained in:
parent
2f523a6f53
commit
6db9d26727
@ -13,6 +13,6 @@ endif
|
|||||||
# Rule for building shared libs (currently used only for regression test
|
# Rule for building shared libs (currently used only for regression test
|
||||||
# shlib ... should go away, since this is not really enough knowledge)
|
# shlib ... should go away, since this is not really enough knowledge)
|
||||||
%.so: %.o
|
%.so: %.o
|
||||||
$(CC) -bundle -o $@ $< $(BE_DLLLIBS)
|
$(CC) $(CFLAGS) -bundle -o $@ $< $(BE_DLLLIBS)
|
||||||
|
|
||||||
sqlmansect = 7
|
sqlmansect = 7
|
||||||
|
Loading…
x
Reference in New Issue
Block a user