From d6d80aa4416f7d8c065b2dab432608751f5e4895 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Thu, 4 Jun 2015 17:20:50 +0100 Subject: [PATCH] Suppress LGHT1076 warning in Windows packaging. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 63d21433..ed4bdda3 100755 --- a/setup.py +++ b/setup.py @@ -116,4 +116,4 @@ else: shutil.rmtree(join(dist_dir, d)) os.system(r'"C:\Program Files (x86)\WiX Toolset v3.9\bin\candle.exe" -out %s\ %s.wxs' % (dist_dir, APPNAME)) if exists('%s/%s.wixobj' % (dist_dir, APPNAME)): - os.system(r'"C:\Program Files (x86)\WiX Toolset v3.9\bin\light.exe" -sacl -spdb %s\%s.wixobj -out %s_win_%s.msi' % (dist_dir, APPNAME, APPNAME, SHORTVERSION)) + os.system(r'"C:\Program Files (x86)\WiX Toolset v3.9\bin\light.exe" -sacl -spdb -sw1076 %s\%s.wixobj -out %s_win_%s.msi' % (dist_dir, APPNAME, APPNAME, SHORTVERSION))