Browse Source

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

Python isnt always python2
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
4586acad8c
  1. 3
      Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py

3
Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py

@ -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:

Loading…
Cancel
Save