mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-10 23:35:05 -06:00
Tweaks to build scripts
This commit is contained in:
parent
54ccfcc705
commit
903d0b91fc
28 changed files with 77 additions and 37 deletions
|
@ -72,8 +72,7 @@
|
|||
from __future__ import print_function
|
||||
from __future__ import division
|
||||
|
||||
import sys
|
||||
import os
|
||||
import sys,os
|
||||
|
||||
pwd = os.getcwd() # make sure we're executing from the correct directory level
|
||||
pwd = pwd.replace('\\', '/')
|
||||
|
|
|
@ -13,11 +13,9 @@
|
|||
from __future__ import print_function
|
||||
from __future__ import division
|
||||
|
||||
import subprocess
|
||||
import os
|
||||
import sys
|
||||
import subprocess,os,sys,platform
|
||||
from SCons.Script import DefaultEnvironment
|
||||
import platform
|
||||
|
||||
current_OS = platform.system()
|
||||
|
||||
env = DefaultEnvironment()
|
||||
|
|
|
@ -9,8 +9,7 @@
|
|||
# Will continue on if a COM port isn't found so that the compilation can be done.
|
||||
#
|
||||
|
||||
import os
|
||||
import sys
|
||||
import os,sys
|
||||
from SCons.Script import DefaultEnvironment
|
||||
import platform
|
||||
current_OS = platform.system()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue