summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ec893c4..e5fe590 100644
--- a/Makefile
+++ b/Makefile
@@ -102,10 +102,10 @@ help:
@printf "Usage:\n\tmake <template>/<flavor>[/boot]\n"
@echo
@echo "Base images targets:"
- @(for T in $(BASETARGETS); do printf "\t%s\n" "$$T"; done)
+ @for T in $(BASETARGETS); do printf "\t%s\n" "$$T"; done
@echo
@echo "Provisioning images targets: "
- @(for P in $(PROVTARGETS); do printf "\t%s\n" "$$P"; done)
+ @for P in $(PROVTARGETS); do printf "\t%s\n" "$$P"; done
@echo
@echo "Generate boot files targets:"
@printf "\t<provisioning_target>/boot\n"