summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Garnock-Jones <tonygarnockjones@gmail.com>2010-04-01 10:39:38 -0400
committerTony Garnock-Jones <tonygarnockjones@gmail.com>2010-04-01 10:39:38 -0400
commit8d7d10caa292812a3bdda501d61f5dfdbcf14cce (patch)
treeea2900dd95136050edd23c2557eb7c13d5ce8f57
parentb7d60531ee2d24705cea87592b035d1f2ab0c167 (diff)
downloadrabbitmq-server-git-8d7d10caa292812a3bdda501d61f5dfdbcf14cce.tar.gz
Split up a long command into several shorter ones without continuation lines.
This doesn't change the meaning of the stanza with respect to temporary files.
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d187f67f89..e32b9b0664 100644
--- a/Makefile
+++ b/Makefile
@@ -211,11 +211,11 @@ distclean: clean
# generated but empty if we fail
$(SOURCE_DIR)/%_usage.erl:
xsltproc --stringparam modulename "`basename $@ .erl`" \
- $(DOCS_DIR)/usage.xsl $< > $@.tmp && \
- sed -e 's/"/\\"/g' -e 's/%QUOTE%/"/g' $@.tmp > $@.tmp2 && \
- fold -s $@.tmp2 > $@.tmp3 && \
- cp $@.tmp3 $@ && \
- rm $@.tmp $@.tmp2 $@.tmp3
+ $(DOCS_DIR)/usage.xsl $< > $@.tmp
+ sed -e 's/"/\\"/g' -e 's/%QUOTE%/"/g' $@.tmp > $@.tmp2
+ fold -s $@.tmp2 > $@.tmp3
+ cp $@.tmp3 $@
+ rm $@.tmp $@.tmp2 $@.tmp3
# We rename the file before xmlto sees it since xmlto will use the name of
# the file to make internal links.