summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-06-02 00:12:34 +0200
committerMichael Stahl <mstahl@redhat.com>2014-06-09 17:05:51 +0200
commitf5111df1f440bdd822f19ed26cd5cc983a57c2d1 (patch)
treea94b5a58046b79ca9bedfb1740d1b7285623c83a /vcl
parent548da05c53f007624d31e6ba46b4769dae9c4035 (diff)
libabw,libfreehand,libvisio: avoid some quoting issues
With Win32 make there are problems with the sed expression. Change-Id: I6d7fe52a233ef88a43ee1b6e3378fcb7b0792d07
Diffstat (limited to 'vcl')
-rw-r--r--vcl/CustomTarget_afm_hash.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/CustomTarget_afm_hash.mk b/vcl/CustomTarget_afm_hash.mk
index 18ea9c17f730..44b2073c2599 100644
--- a/vcl/CustomTarget_afm_hash.mk
+++ b/vcl/CustomTarget_afm_hash.mk
@@ -15,6 +15,6 @@ $(call gb_CustomTarget_get_workdir,vcl/generic/fontmanager)/afm_hash.hpp : \
$(SRCDIR)/vcl/generic/fontmanager/afm_keyword_list \
| $(call gb_CustomTarget_get_workdir,vcl/generic/fontmanager)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),GPF,1)
- $(GPERF) -C -t -l -L C++ -m 20 -Z AfmKeywordHash -k '1,4,6,$$' $< | sed -e "s/(char\*)0/(char\*)0, NOPE/g" | grep -v "^#line" > $@
+ $(GPERF) -C -t -l -L C++ -m 20 -Z AfmKeywordHash -k '1,4,6,$$' $< | sed -e 's/(char\*)0/(char\*)0, NOPE/g' | grep -v '^#line' > $@
# vim: set noet sw=4: