From 0b5a16abe03ee582e3d2d7bf41ed5a0f224f95cb Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 11 May 2008 03:01:27 +0200 Subject: Properly escape quotes. (This used to be commit 33094329610097113c244ccd02606661a4c9e2e0) --- source4/build/make/rules.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/build/make/rules.mk') diff --git a/source4/build/make/rules.mk b/source4/build/make/rules.mk index f5d57edb0d..a04372b839 100644 --- a/source4/build/make/rules.mk +++ b/source4/build/make/rules.mk @@ -212,7 +212,7 @@ include/includes.d: include/includes.h @-mkdir -p `dirname $@` @$(COMPILE) && exit 0 ; \ echo "The following command failed:" 1>&2;\ - echo "$(COMPILE)" 1>&2 && exit 1 + echo "$(subst ",\",$(COMPILE))" 1>&2 && exit 1 .c.ho: @@ -220,7 +220,7 @@ include/includes.d: include/includes.h @-mkdir -p `dirname $@` @$(HCOMPILE) && exit 0;\ echo "The following command failed:" 1>&2;\ - echo "$(HCOMPILE)" 1>&2;\ + echo "$(subst ",\",$(HCOMPILE))" 1>&2;\ $(HCOMPILE) >/dev/null 2>&1 .h.h.gch: -- cgit