Commit fa8e42df authored by Tom Lane's avatar Tom Lane

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
parent 796a3f37
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment