diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-11-11 14:22:48 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-11-11 14:22:48 -0500 |
commit | 223fc208f61ab2d12eecfb6dc169927300cde941 (patch) | |
tree | a0d83f76e006a9041c6077a47e748100a9f332f9 /doc | |
parent | 2b4ed1d07e5b03f368ccc23e44c2189d5dedc3fd (diff) | |
download | tor-223fc208f61ab2d12eecfb6dc169927300cde941.tar.gz tor-223fc208f61ab2d12eecfb6dc169927300cde941.zip |
Split long lines in configure.in and Makefile.am files
Having very long single lines with lots and lots of things in them
tends to make files hard to diff and hard to merge. Since our tools
are one-line-at-a-time, we should try to construct lists that way too,
within reason.
This incidentally turned up a few headers in configure.in that we were
for some reason searching for twice.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/spec/Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/spec/Makefile.am b/doc/spec/Makefile.am index e2fef42e81..a4fba780ee 100644 --- a/doc/spec/Makefile.am +++ b/doc/spec/Makefile.am @@ -1,5 +1,12 @@ -EXTRA_DIST = tor-spec.txt rend-spec.txt control-spec.txt \ - dir-spec.txt socks-extensions.txt path-spec.txt \ - version-spec.txt address-spec.txt bridges-spec.txt +EXTRA_DIST = \ + address-spec.txt \ + bridges-spec.txt \ + control-spec.txt \ + dir-spec.txt \ + path-spec.txt \ + rend-spec.txt \ + socks-extensions.txt \ + tor-spec.txt \ + version-spec.txt |