From: Mark Wooding Date: Wed, 11 Sep 2019 16:52:04 +0000 (+0100) Subject: Makefile: Use `squote' when printing variable lists. X-Git-Url: https://git.distorted.org.uk/~mdw/distorted-chroot/commitdiff_plain/fb28f2a83903fabf8782e14c99777581217cd7bf Makefile: Use `squote' when printing variable lists. --- diff --git a/Makefile b/Makefile index 9dd6e1f..a3ff7b6 100644 --- a/Makefile +++ b/Makefile @@ -437,8 +437,8 @@ check::; $(call check-symlink,ERR,/schroot,/run/schroot/mount) %print-varlist = { \ echo "\#\#\# -*-sh-*- GENERATED by distorted-chroot: do not edit"; \ - $(foreach v,$1, echo $v=\''$(subst ','\'\\\'\'',$($v))'\';) \ -} #' + $(foreach v,$1, echo $v=\'$(call squote,$($v))\';) \ +} schroot-config_HASH := \ $(shell $(call %print-varlist,$(CONFIG_VARS)) | \ sha256sum | cut -c1-32)