From fad66ae22225890dac05e742078f7cfb7e3475a0 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Wed, 30 Sep 2015 01:26:27 -0500 Subject: [PATCH] Maybe fix old MSYS when there is an empty for loop Based on ioquake3 svn r1485. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 825307ff..3df83660 100644 --- a/Makefile +++ b/Makefile @@ -1261,7 +1261,7 @@ endif NAKED_TARGETS=$(shell echo $(TARGETS) | sed -e "s!$(B)/!!g") -print_list=@for i in $(1); \ +print_list=-@for i in $(1); \ do \ echo " $$i"; \ done