Feature Proposal : Make All Python Extensions User Configuration Independent (#1435)
* Updated all Python extension packages to use 'setup_py' on install. * Fixed a few minor style issues with the updated Python packages.
This commit is contained in:

committed by
Todd Gamblin

parent
415ddeecf8
commit
82fcc5e1de
@@ -129,5 +129,5 @@ def variant_to_flag(variant):
|
||||
variants = ['jpeg', 'zlib', 'tiff', 'freetype', 'lcms', 'jpeg2000']
|
||||
build_args = list(map(variant_to_flag, variants))
|
||||
|
||||
python('setup.py', 'build_ext', *build_args)
|
||||
python('setup.py', 'install', '--prefix={0}'.format(prefix))
|
||||
setup_py('build_ext', *build_args)
|
||||
setup_py('install', '--prefix={0}'.format(prefix))
|
||||
|
Reference in New Issue
Block a user