From 4004ed5294609da8b4840e6669b7c96d24a6939d Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Fri, 13 Sep 2019 20:13:17 +0100 Subject: [PATCH] Makefile: Keep unnecessary spaces out of `$(foreach ...)' forms. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 88b9ea5..aae33e4 100644 --- a/Makefile +++ b/Makefile @@ -373,10 +373,10 @@ $(SUBST_SCRIPTS): $(STATE)/bin/%: bin/% $(STATE)/config.sh ## In a chroot, `/etc/apt/sources.list' links to ## `/usr/local.schroot/etc/apt/sources.$d' for the appropriate distribution. -APT_SOURCES = $(foreach d,$(DISTS), $(LOCAL)/etc/apt/sources.$d) +APT_SOURCES = $(foreach d,$(DISTS),$(LOCAL)/etc/apt/sources.$d) all:: $(APT_SOURCES) -$(foreach d,$(DISTS), $(STATE)/etc/apt/aptsrc.$d): $(STATE)/etc/apt/aptsrc.%: +$(foreach d,$(DISTS),$(STATE)/etc/apt/aptsrc.$d): $(STATE)/etc/apt/aptsrc.%: $(V_AT)mkdir -p $(dir $@) $(call v_tag,GEN){ \ echo "### -*-conf-*- GENERATED by distorted-chroot: do not edit"; \ -- 2.11.0