Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorLluis Sanchez Gual <lluis@novell.com>2011-02-15 13:16:16 +0300
committerLluis Sanchez Gual <lluis@novell.com>2011-02-15 13:16:16 +0300
commitf35f2be76b0831b5aa1c9f8dc249bba29916e6f9 (patch)
treef022849c0e14b503a2369eb6c43b9f6627b61ec6 /setup
parent4b110efa36cf4cf0730e7c4daaf279ac4be4712b (diff)
Fix MonoLibraries path
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup/WixSetup/build.js b/setup/WixSetup/build.js
index a103fb51b2..7bb4844b28 100644
--- a/setup/WixSetup/build.js
+++ b/setup/WixSetup/build.js
@@ -5,7 +5,7 @@ var BUILD_VERSION = 0;
var sh = new ActiveXObject("WScript.Shell");
var fs = new ActiveXObject("Scripting.FileSystemObject");
-var MONO_LIBS = "C:\\Program Files\\MonoLibraries\\2.6\\lib\\mono\\2.0";
+var MONO_LIBS = "C:\\Program Files\\MonoLibraries\\2.6";
var MD_DIR = "..\\..";
var MD_EXTRAS_DIR = "..\\..\\extras";
var PRODUCT_VERSION = "" + MAJOR_VERSION + "." + MINOR_VERSION + "." + POINT_VERSION + (BUILD_VERSION != 0 ? "." + BUILD_VERSION : "");