1
0
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:
Tom Lane 2006-11-28 05:47:16 +00:00
parent 2f523a6f53
commit 6db9d26727

View File

@ -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