Commit 4d279b09 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

make: config -- Drop redundant comma in try-cc call

It takes only two arguments. Note it's not error since
we don't even reference to a third argument here but
just to be consistent and clear.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Tested-by: 's avatarRuslan Kuprieiv <kupruser@gmail.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent c5afed06
...@@ -10,19 +10,19 @@ $(CONFIG): scripts/utilities.mak scripts/feature-tests.mak include/config-base.h ...@@ -10,19 +10,19 @@ $(CONFIG): scripts/utilities.mak scripts/feature-tests.mak include/config-base.h
$(Q) @echo '' >> $@ $(Q) @echo '' >> $@
$(Q) @echo '#include "config-base.h"' >> $@ $(Q) @echo '#include "config-base.h"' >> $@
$(Q) @echo '' >> $@ $(Q) @echo '' >> $@
ifeq ($(call try-cc,$(TCP_REPAIR_TEST),,),y) ifeq ($(call try-cc,$(TCP_REPAIR_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_TCP_REPAIR' >> $@ $(Q) @echo '#define CONFIG_HAS_TCP_REPAIR' >> $@
endif endif
ifeq ($(call try-cc,$(PRLIMIT_TEST),,),y) ifeq ($(call try-cc,$(PRLIMIT_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_PRLIMIT' >> $@ $(Q) @echo '#define CONFIG_HAS_PRLIMIT' >> $@
endif endif
ifeq ($(call try-cc,$(STRLCPY_TEST),,),y) ifeq ($(call try-cc,$(STRLCPY_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_STRLCPY' >> $@ $(Q) @echo '#define CONFIG_HAS_STRLCPY' >> $@
endif endif
ifeq ($(call try-cc,$(STRLCAT_TEST),,),y) ifeq ($(call try-cc,$(STRLCAT_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_STRLCAT' >> $@ $(Q) @echo '#define CONFIG_HAS_STRLCAT' >> $@
endif endif
ifeq ($(call try-cc,$(PTRACE_PEEKSIGINFO_TEST),,),y) ifeq ($(call try-cc,$(PTRACE_PEEKSIGINFO_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_PEEKSIGINFO_ARGS' >> $@ $(Q) @echo '#define CONFIG_HAS_PEEKSIGINFO_ARGS' >> $@
endif endif
$(Q) @echo '#endif /* __CR_CONFIG_H__ */' >> $@ $(Q) @echo '#endif /* __CR_CONFIG_H__ */' >> $@
......
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