chiark / gitweb /
Makefile: Keep unnecessary spaces out of `$(foreach ...)' forms.
authorMark Wooding <mdw@distorted.org.uk>
Fri, 13 Sep 2019 19:13:17 +0000 (20:13 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 19 Sep 2019 01:50:13 +0000 (02:50 +0100)
Makefile

index 88b9ea52e2495bd58a97fc5ca151faf8d593f7cc..aae33e4050ffb48663439e234779cdff0b065dd9 100644 (file)
--- 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"; \