1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Subject: Adjust spades_home var to install files under /usr/share/spades
From: Alex Mestiashvili <amestia@rsh2.donotuse.de>
Forwarded: not-needed
--- a/assembler/spades_init.py
+++ b/assembler/spades_init.py
@@ -32,7 +32,7 @@
if isfile(os.path.join(spades_home, 'spades-core')):
install_prefix = dirname(spades_home)
bin_home = join(install_prefix, 'bin')
- spades_home = join(install_prefix, 'share', 'spades')
+ spades_home = join(install_prefix, '../../', 'share', 'spades')
python_modules_home = spades_home
ext_python_modules_home = spades_home
|