From 4b291b12f82ee31ff39f0b868ebfb13a24e76d1a Mon Sep 17 00:00:00 2001 From: cyberbotx Date: Fri, 13 Feb 2009 17:47:08 +0000 Subject: [PATCH] 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 --- install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] + '"'; } }, {