Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@openvz.org>2014-03-21 12:04:33 +0400
committerPavel Emelyanov <xemul@parallels.com>2014-03-24 20:15:08 +0400
commit4d279b09f0aa49b4b0f50ce4e8a16779716b1390 (patch)
treef2eea4c497404399d02e8a407b64413b0f8900e1 /Makefile.config
parentc5afed0685377b813fd4e4a835a00548aa2c3a92 (diff)
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: Cyrill Gorcunov <gorcunov@openvz.org> Tested-by: Ruslan Kuprieiv <kupruser@gmail.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.config b/Makefile.config
index 880d97c34..9d150a90f 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -10,19 +10,19 @@ $(CONFIG): scripts/utilities.mak scripts/feature-tests.mak include/config-base.h
$(Q) @echo '' >> $@
$(Q) @echo '#include "config-base.h"' >> $@
$(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' >> $@
endif
-ifeq ($(call try-cc,$(PRLIMIT_TEST),,),y)
+ifeq ($(call try-cc,$(PRLIMIT_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_PRLIMIT' >> $@
endif
-ifeq ($(call try-cc,$(STRLCPY_TEST),,),y)
+ifeq ($(call try-cc,$(STRLCPY_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_STRLCPY' >> $@
endif
-ifeq ($(call try-cc,$(STRLCAT_TEST),,),y)
+ifeq ($(call try-cc,$(STRLCAT_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_STRLCAT' >> $@
endif
-ifeq ($(call try-cc,$(PTRACE_PEEKSIGINFO_TEST),,),y)
+ifeq ($(call try-cc,$(PTRACE_PEEKSIGINFO_TEST),),y)
$(Q) @echo '#define CONFIG_HAS_PEEKSIGINFO_ARGS' >> $@
endif
$(Q) @echo '#endif /* __CR_CONFIG_H__ */' >> $@