summaryrefslogtreecommitdiff
path: root/Makefile
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
commitb7d60531ee2d24705cea87592b035d1f2ab0c167 (patch)
tree91f02bdba29b6700d17fe85a408e792809705ceb /Makefile
parentfc74ffd36ef4dfaa718669ea6c15af59324f5871 (diff)
downloadrabbitmq-server-git-b7d60531ee2d24705cea87592b035d1f2ab0c167.tar.gz
Avoid deeply quoted quoting
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4a90ef9ff2..d187f67f89 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