From 6190cf21e556039a7f8411cbc32414cb88293a3f Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 4 Jun 2015 18:40:41 -0400 Subject: [PATCH] [Ubuntu] Fix stage prefix used for Python 3 module --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 53e39864b..4a262b365 100644 --- a/SConstruct +++ b/SConstruct @@ -1176,6 +1176,7 @@ if env['layout'] == 'debian': env['inst_python_bindir'] = pjoin(base, 'cantera-python', 'usr', 'bin') env['python_prefix'] = pjoin(base, 'cantera-python', 'usr') + env['python3_prefix'] = pjoin(base, 'cantera-python3', 'usr') env['ct_datadir'] = '/usr/share/cantera/data' else: env['inst_libdir'] = pjoin(instRoot, 'lib')