Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2016-01-19 21:13:06 +0300
committerCasey Deccio <casey@deccio.net>2016-01-19 21:13:06 +0300
commit17fedf19c7072931dfaa4aaadfb1191be0d6a04f (patch)
tree98680d7faa2557cb04b90fe1fe851df7757ac594 /setup.py
parent58021244459e442de2ddc3bf42a4782653aad4c2 (diff)
Find openssl's engines directory
Replace hard-coded paths with functionality that looks at the filesystem to find openssl's engines directory
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 61a5d53..91281c3 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ JQUERY_UI_PATH = "'http://code.jquery.com/ui/1.11.4/jquery-ui.min.js'"
JQUERY_UI_CSS_PATH = "'http://code.jquery.com/ui/1.11.4/themes/redmond/jquery-ui.css'"
JQUERY_PATH = "'http://code.jquery.com/jquery-1.11.3.min.js'"
RAPHAEL_PATH = "'http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.4/raphael-min.js'"
-GOST_PATH = "'/usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines/libgost.so'"
+OPENSSL_LIB_DIR = "'/usr/lib/x86_64-linux-gnu'"
def apply_substitutions(filename, install_prefix):
assert filename.endswith('.in'), 'Filename supplied for customization must end with \'.in\': %s' % (filename)
@@ -32,7 +32,7 @@ def apply_substitutions(filename, install_prefix):
s = s.replace('__JQUERY_UI_PATH__', JQUERY_UI_PATH)
s = s.replace('__JQUERY_UI_CSS_PATH__', JQUERY_UI_CSS_PATH)
s = s.replace('__RAPHAEL_PATH__', RAPHAEL_PATH)
- s = s.replace('__GOST_PATH__', GOST_PATH)
+ s = s.replace('__OPENSSL_LIB_DIR__', OPENSSL_LIB_DIR)
out_fh.write(s)
in_fh.close()
out_fh.close()