From 1b594b79e9808ea7b0bb7b2bb4e4cd8e40961bc4 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 4 Mar 2015 09:27:14 +0100 Subject: [PATCH] msys2-installer: Fix a comparison so only 32-bit executables are rebased Signed-off-by: Sebastian Schuberth --- .../qt-ifw/packages/com.msys2.root.base/meta/installscript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msys2-installer/qt-ifw/packages/com.msys2.root.base/meta/installscript.js b/msys2-installer/qt-ifw/packages/com.msys2.root.base/meta/installscript.js index 81c33a97..139a7738 100644 --- a/msys2-installer/qt-ifw/packages/com.msys2.root.base/meta/installscript.js +++ b/msys2-installer/qt-ifw/packages/com.msys2.root.base/meta/installscript.js @@ -33,7 +33,7 @@ function createShortcuts() "@StartMenuDir@/MinGW-w64 Win64 Shell.lnk", "/A /Q /K " + installer.value("TargetDir") + "\\mingw64_shell.bat"); - if ("@BITNESS@bit" === "@BITNESS@bit") { + if ("@BITNESS@bit" === "32bit") { component.addOperation( "Execute", ["@TargetDir@\\autorebase.bat"]); }