From: Don Armstrong Date: Thu, 18 Sep 2008 02:58:31 +0000 (-0700) Subject: fix foreach issue in makefile X-Git-Tag: release/2.6.0~472^2~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a2cb921e7809bd53a7bec89a0978d4f2427c4155;p=debbugs.git fix foreach issue in makefile --- diff --git a/Makefile b/Makefile index f2cdf3dc..152e7509 100644 --- a/Makefile +++ b/Makefile @@ -86,8 +86,8 @@ $(var_dir)/spool/db-h $(scripts_dir) $(examples_dir) $(man8_dir); \ $(install_data) misc/updateseqs $(var_dir)/spool # install the templates - $(foreach dir, $(wildcard templates/*/*), $(exec $(install_exec) $(template_dir)/$(patsubst templates/%,%,$(dir)))) - $(foreach tmpl, $(wildcard templates/*/*/*.tmpl), $(exec $(install_data) $(template_dir)/$(patsubst templates/%,%,$(tmpl)))) + $(foreach dir, $(wildcard templates/*/*), $(exec -d $(install_exec) $(template_dir)/$(patsubst templates/%,%,$(dir)))) + $(foreach tmpl, $(wildcard templates/*/*/*.tmpl), $(exec $(install_data) $(tmpl) $(template_dir)/$(patsubst templates/%,%,$(tmpl)))) .PHONY: test \ No newline at end of file