4485. [bug] Look in $prefix/lib/pythonX.Y/site-packages for

the python modules we install. [RT #43330]

(cherry picked from commit 01862dfaa5)
This commit is contained in:
Mark Andrews 2016-10-11 15:20:37 +11:00
parent 0b612b420d
commit 2bbab60f50
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,6 @@
4485. [bug] Look in $prefix/lib/pythonX.Y/site-packages for
the python modules we install. [RT #43330]
4484. [bug] Failure to find readline when requested should be
fatal to configure. [RT #43328]

View file

@ -12,7 +12,8 @@ import sys
sys.path.insert(0, os.path.dirname(sys.argv[0]))
if os.name != 'nt':
sys.path.insert(1, os.path.join('@prefix@', 'lib'))
sys.path.insert(1, os.path.join('@prefix@', 'lib',
'python' + sys.version[:3], 'site-packages'))
import isc.checkds

View file

@ -12,7 +12,8 @@ import sys
sys.path.insert(0, os.path.dirname(sys.argv[0]))
if os.name != 'nt':
sys.path.insert(1, os.path.join('@prefix@', 'lib'))
sys.path.insert(1, os.path.join('@prefix@', 'lib',
'python' + sys.version[:3], 'site-packages'))
import isc.coverage

View file

@ -12,7 +12,8 @@ import sys
sys.path.insert(0, os.path.dirname(sys.argv[0]))
if os.name != 'nt':
sys.path.insert(1, os.path.join('@prefix@', 'lib'))
sys.path.insert(1, os.path.join('@prefix@', 'lib',
'python' + sys.version[:3], 'site-packages'))
import isc.keymgr