added python 2.4 ignore case for qmake persist
This commit is contained in:
parent
cc520f08d8
commit
3b3d292f0f
|
@ -215,6 +215,10 @@ class InternalCommands:
|
||||||
self.persist_w32_make()
|
self.persist_w32_make()
|
||||||
|
|
||||||
def persist_qmake(self):
|
def persist_qmake(self):
|
||||||
|
# cannot use subprocess on < python 2.4
|
||||||
|
if sys.version_info < (2, 4):
|
||||||
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
p = subprocess.Popen(
|
p = subprocess.Popen(
|
||||||
[self.qmake_cmd, '--version'],
|
[self.qmake_cmd, '--version'],
|
||||||
|
|
Loading…
Reference in New Issue