Don't use flags that mac clang doesn't support as it does on other platforms (#2975)

pull/2977/head
Önder Kalacı 2019-09-16 11:44:06 +02:00 committed by Jelte Fennema
parent 8f2a3a0604
commit 13947a63ce
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ $(SQL_DEPDIR) $(SQL_BUILDDIR):
mkdir -p $(citus_abs_srcdir)/$@
$(generated_sql_files): $(citus_abs_srcdir)/build/%: % $(SQL_DEPDIR) $(SQL_BUILDDIR)
cd $(citus_abs_srcdir) && cpp -undef -w -P -MMD -MP -MF $(SQL_DEPDIR)/$(*F).Po -MT $@ $< > $@
cd $(citus_abs_srcdir) && cpp -undef -w -P $< > $@
SQL_Po_files := $(wildcard $(SQL_DEPDIR)/*.Po)
ifneq (,$(SQL_Po_files))