diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-08 19:05:35 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-08 19:05:35 +0000 |
commit | 92f744e4216e9e48247891fb73c8fb9e42419f4c (patch) | |
tree | 2f9f6f96aede55c83f46f5e2a2e0da2152f98b1b /install.js | |
parent | 1aba1eb3ea635756a44c4221b22b688ccd2ec9ab (diff) |
Fixed Autotools to detect *.cpp files in the src/core and src/modules folders.
Also small fix to the Windows install.js call to CMake to include quotes around the source's path.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1949 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'install.js')
-rw-r--r-- | install.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.js b/install.js index 7d336bff4..e136257c5 100644 --- a/install.js +++ b/install.js @@ -214,7 +214,7 @@ for (x in installerQuestions) { var thisQuestion = installerQuestions[x]; cmake += ' ' + thisQuestion.cmake_argument(); } -cmake += ' ' + ScriptPath; +cmake += ' "' + ScriptPath + '"'; WScript.Echo(cmake + "\n"); var shell = WScript.CreateObject('WScript.Shell'); |