From b1dbdcac78933ebb80eb84ba652d47330758e85b Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 3 Sep 2015 00:26:06 +0200 Subject: [PATCH] build: Completion headers no longer depend .c file. Due to commit 6aea41e6 (command_util.bash: Kill make_proto()) this dependency can be dropped. --- Makefile.real | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.real b/Makefile.real index faa6d2af..29beddeb 100644 --- a/Makefile.real +++ b/Makefile.real @@ -132,7 +132,7 @@ $(cmdlist_dir)/%.command_list.h: %.cmd %.c | $(cmdlist_dir) $(cmdlist_dir)/%.command_list.man: %.cmd %.c | $(cmdlist_dir) @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.bash man < $< > $@ -$(cmdlist_dir)/%.completion.h: %.cmd %.c | $(cmdlist_dir) +$(cmdlist_dir)/%.completion.h: %.cmd | $(cmdlist_dir) @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.bash compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \ $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@ -- 2.39.2