summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonygarnockjones@gmail.com>2010-04-01 10:36:16 -0400
committerTony Garnock-Jones <tonygarnockjones@gmail.com>2010-04-01 10:36:16 -0400
commit7f125dab65c83cf572386b2a2d41ca1b684f462d (patch)
tree91f02bdba29b6700d17fe85a408e792809705ceb
parentd86e6a53f5a15fa7b866124a3d675a41464cc0ab (diff)
downloadrabbitmq-server-7f125dab65c83cf572386b2a2d41ca1b684f462d.tar.gz
Avoid deeply quoted quoting
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4a90ef9f..d187f67f 100644
--- a/Makefile
+++ b/Makefile
@@ -212,7 +212,7 @@ distclean: clean
$(SOURCE_DIR)/%_usage.erl:
xsltproc --stringparam modulename "`basename $@ .erl`" \
$(DOCS_DIR)/usage.xsl $< > $@.tmp && \
- sed -e s/\\\"/\\\\\\\"/g -e s/%QUOTE%/\\\"/g $@.tmp > $@.tmp2 && \
+ sed -e 's/"/\\"/g' -e 's/%QUOTE%/"/g' $@.tmp > $@.tmp2 && \
fold -s $@.tmp2 > $@.tmp3 && \
cp $@.tmp3 $@ && \
rm $@.tmp $@.tmp2 $@.tmp3