mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-03 05:57:23 +01:00
IGN:Use the QMAKE environment variable when building PyQt extensions
This commit is contained in:
parent
63439090b4
commit
6b238e35a2
1 changed files with 1 additions and 0 deletions
|
|
@ -15,6 +15,7 @@
|
|||
from PyQt4 import pyqtconfig
|
||||
iswindows = 'win32' in sys.platform
|
||||
QMAKE = os.path.expanduser('~/qt/bin/qmake') if 'darwin' in sys.platform else'qmake'
|
||||
QMAKE = os.environ.get('QMAKE', QMAKE)
|
||||
WINDOWS_PYTHON = ['C:/Python26/libs']
|
||||
OSX_SDK = '/Developer/SDKs/MacOSX10.4u.sdk'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue