[tor-commits] [arm/release] fix: fallback config descriptions not installed

atagar at torproject.org atagar at torproject.org
Sun Jul 17 06:08:29 UTC 2011


commit 2a43cc028d97fcfcbd9e72900ed40026a78050e7
Author: Damian Johnson <atagar at torproject.org>
Date:   Wed Jun 29 18:51:53 2011 -0700

    fix: fallback config descriptions not installed
    
    The fallback descriptions for Tor's configuration options (which are used when
    the man page is unavailable) weren't being copied when arm's installed. This
    resulted in an error message and no config descriptions if the man page was
    unavailable. Caught by ioerror
---
 setup.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/setup.py b/setup.py
index cdda907..9a9efdd 100644
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,7 @@ setup(name='arm',
       data_files=[("/usr/bin", ["arm"]),
                   ("/usr/share/man/man1", [manFilename]),
                   (docPath, ["armrc.sample"]),
-                  ("/usr/share/arm", ["src/settings.cfg", "src/uninstall"])],
+                  ("/usr/share/arm", ["src/settings.cfg", "src/uninstall", "src/torConfigDesc.txt"])],
      )
 
 # Cleans up the temporary compressed man page.





More information about the tor-commits mailing list