diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-13 17:47:08 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-13 17:47:08 +0000 |
commit | 4b291b12f82ee31ff39f0b868ebfb13a24e76d1a (patch) | |
tree | 77b533ab1e005f9bc0d7b661673c60dab4255b0e /install.js | |
parent | 1344bc57280c93a2cb29bdd204706d51a1aab487 (diff) |
Fix error when install directory in instal.js contains spaces, spotted by Rexona.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2042 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 fc5d21e65..455d75e4b 100644 --- a/install.js +++ b/install.js @@ -52,7 +52,7 @@ var installerQuestions = [ return true; }, 'cmake_argument' : function() { - return '-DINSTDIR:STRING=' + installerResponses['Install Directory']; + return '-DINSTDIR:STRING="' + installerResponses['Install Directory'] + '"'; } }, { |