Merge pull request #7959 from alexxy/bugfix-2.0.x

Python isnt always python2
This commit is contained in:
Scott Lahteine 2017-10-14 05:02:07 -05:00 committed by GitHub
commit 4586acad8c

View file

@ -1,3 +1,4 @@
from __future__ import print_function
import sys
#dynamic build flags for generic compile options
@ -27,7 +28,7 @@ if __name__ == "__main__":
for i in range(1, len(sys.argv)):
args += " " + sys.argv[i]
print args
print(args)
# extra script for linker options
else: