From: Mark Wooding Date: Fri, 13 Sep 2019 19:13:17 +0000 (+0100) Subject: Makefile: Keep unnecessary spaces out of `$(foreach ...)' forms. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/distorted-chroot/commitdiff_plain/4004ed5294609da8b4840e6669b7c96d24a6939d?ds=sidebyside Makefile: Keep unnecessary spaces out of `$(foreach ...)' forms. --- 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"; \