git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6922 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2017-10-06 19:30:20 +00:00
parent 80bc65beb1
commit 55cb9be2be
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
print "Using default tools configuration"
print("Using default tools configuration")
Import('defenv')

View file

@ -1,4 +1,4 @@
print "Using GNU tools configuration"
print("Using GNU tools configuration")
Import('defenv')
@ -14,7 +14,7 @@ if GetOptionOrEnv('NSIS_SCONS_GNU_ENVPATHHACK'):
for var in import_env:
if var in os.environ:
defenv['ENV'][var] = os.environ.get(var, '')
#print defenv.Dump()
#print(defenv.Dump())
### cross compiling

View file

@ -1,4 +1,4 @@
print "Using hpc++ tools configuration"
print("Using hpc++ tools configuration")
Import('defenv')

View file

@ -1,5 +1,5 @@
Import('defenv')
print "Using Microsoft tools configuration (%s)" % defenv.get('MSVS_VERSION','<Default>')
print("Using Microsoft tools configuration (%s)" % defenv.get('MSVS_VERSION','<Default>'))
### flags
@ -100,7 +100,7 @@ if float(defenv['MSVS_VERSION'].replace('Exp','')) < 8.0:
except IOError:
continue
else:
print "*** Couldn't find a good version of libcp.lib"
print("*** Couldn't find a good version of libcp.lib")
Exit(2)
conf.Finish()