diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-02-27 17:06:06 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-03-01 04:07:55 +0100 |
commit | 0cd1b499b46fa112e0d81e467a0d07f79e04bbdb (patch) | |
tree | 4fe96b8c252b200c1f0d5c0d146ec90b9e73ff8c /doc/Makefile.am | |
parent | f9de12b864cc2b2fd5c3327f9dccf16deeefb483 (diff) | |
download | tor-0cd1b499b46fa112e0d81e467a0d07f79e04bbdb.tar tor-0cd1b499b46fa112e0d81e467a0d07f79e04bbdb.tar.gz |
Simplify asciidoc-helper
We don't need sed for our string manipulation, so let's get rid of
it. Suggested by weasel.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index cccc94823..dbc44f0fb 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -39,7 +39,7 @@ DIST_SUBDIRS = spec # Generate the html documentation from asciidoc, but don't do # machine-specific replacements yet $(html_in) : - $(top_srcdir)/doc/asciidoc-helper.sh html @ASCIIDOC@ @SED@ $(top_srcdir)/doc/$@ + $(top_srcdir)/doc/asciidoc-helper.sh html @ASCIIDOC@ $(top_srcdir)/doc/$@ tor.html.in : tor.1.txt torify.html.in : torify.1.txt @@ -49,7 +49,7 @@ tor-resolve.html.in : tor-resolve.1.txt # Generate the manpage from asciidoc, but don't do # machine-specific replacements yet $(man_in) : - $(top_srcdir)/doc/asciidoc-helper.sh man @A2X@ @SED@ $(top_srcdir)/doc/$@ + $(top_srcdir)/doc/asciidoc-helper.sh man @A2X@ $(top_srcdir)/doc/$@ tor.1.in : tor.1.txt torify.1.in : torify.1.txt |