diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 03:01:27 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 03:01:27 +0200 |
commit | 0b5a16abe03ee582e3d2d7bf41ed5a0f224f95cb (patch) | |
tree | 66d33067ea795e16bdd0be729359d25de8c8f165 /source4/build | |
parent | b48e2e4c4103e7b6065bce61af39f09ebfb83af2 (diff) | |
download | samba-0b5a16abe03ee582e3d2d7bf41ed5a0f224f95cb.tar.gz samba-0b5a16abe03ee582e3d2d7bf41ed5a0f224f95cb.tar.bz2 samba-0b5a16abe03ee582e3d2d7bf41ed5a0f224f95cb.zip |
Properly escape quotes.
(This used to be commit 33094329610097113c244ccd02606661a4c9e2e0)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/make/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
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: |