From: Mark Wooding Date: Tue, 5 May 2020 19:47:56 +0000 (+0100) Subject: Makefile: Fix `squote' to have the right number of `\'s. X-Git-Url: https://git.distorted.org.uk/~mdw/distorted-chroot/commitdiff_plain/1727e3c69989bcd91df63d99edfcc9c51a112d0d Makefile: Fix `squote' to have the right number of `\'s. --- diff --git a/Makefile b/Makefile index ea89661..7479ae6 100644 --- a/Makefile +++ b/Makefile @@ -274,7 +274,8 @@ throwrc = { $1; echo $$? >&4; } ## $(call squote,TXT) ## ## Single-quote TXT. -squote = '$(subst ','\\'',$1)' +squote = '$(subst ','\'',$1)' +#' ## $(call chroot-dist,D-A) -> D ## $(call chroot-arch,D-A) -> A