summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-06-16 20:08:42 +0200
committerMichael Stahl <mstahl@redhat.com>2014-06-16 20:08:42 +0200
commit1700911d88f56c077ca1b49d7c07489a059ed0da (patch)
treee957b2f064b4ed9f31a23e3a6bfd0edff7b9aec6
parente8f0de8e6e69551fa54cf43ee0ab93ed22d9d5d5 (diff)
libvisio: avoid some quoting issue with Win32 make
-rw-r--r--src/lib/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index 6080d31..618f83a 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -88,7 +88,7 @@ $(top_builddir)/src/lib/tokens.h : $(top_builddir)/src/lib/tokens.gperf
$(top_builddir)/src/lib/tokenhash.h : $(top_builddir)/src/lib/tokens.gperf
$(GPERF) --compare-strncmp -C -m 20 $(top_builddir)/src/lib/tokens.gperf \
- | $(SED) -e "s/(char\*)0/(char\*)0, 0/g" > $(top_builddir)/src/lib/tokenhash.h
+ | $(SED) -e 's/(char\*)0/(char\*)0, 0/g' > $(top_builddir)/src/lib/tokenhash.h
$(top_builddir)/src/lib/tokens.gperf : $(top_srcdir)/src/lib/tokens.txt gentoken.pl
perl $(top_srcdir)/src/lib/gentoken.pl $(top_srcdir)/src/lib/tokens.txt \