fixed bug #1610773 - nsis-2.22 fails to install on Linux (mingw32)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4840 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ab5977c0ad
commit
22088d6674
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ docs = Split("""
|
|||
|
||||
Import('BuildPlugin env')
|
||||
|
||||
if float(env['MSVS_VERSION'].replace('Exp','')) >= 8.0:
|
||||
if env.has_key('MSVS_VERSION') and float(env['MSVS_VERSION'].replace('Exp','')) >= 8.0:
|
||||
files += ['Source/mathcrtmt.lib']
|
||||
else:
|
||||
files += ['Source/mathcrt.lib']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue