You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by Juhani Ränkimies <ju...@juranki.com> on 2010/02/23 14:11:23 UTC

'setup dist' fails if path to Inno Setup contains spaces

Hi,

fix below.

-juhani

------------------------------- etc/Makefile.am -------------------------------
index f83b0ef..10c9dc0 100644
@@ -93,7 +93,7 @@ windows/couchdb.iss: windows/couchdb.iss.tpl FORCE
 # The installer depends on all files, not just the source .iss file,
 # so we trick make into always building it with the FORCE pattern...
 windows/setup-couchdb-@version@.exe: windows/couchdb.iss
windows/README.txt FORCE
-	$(INNO_COMPILER_EXECUTABLE) /q $<
+	"$(INNO_COMPILER_EXECUTABLE)" /q $<
 	@echo Windows Installer is at: `cygpath -a -w
windows/setup-couchdb-@version@.exe`

 windows/setup-couchdb-@version@.exe.md5: windows/setup-couchdb-@version@.exe

Re: 'setup dist' fails if path to Inno Setup contains spaces

Posted by Mark Hammond <sk...@gmail.com>.
Thanks - I checked the fix into the trunk and 0.11

Cheers,

Mark

On 24/02/2010 12:11 AM, Juhani Ränkimies wrote:
> Hi,
>
> fix below.
>
> -juhani
>
> ------------------------------- etc/Makefile.am -------------------------------
> index f83b0ef..10c9dc0 100644
> @@ -93,7 +93,7 @@ windows/couchdb.iss: windows/couchdb.iss.tpl FORCE
>   # The installer depends on all files, not just the source .iss file,
>   # so we trick make into always building it with the FORCE pattern...
>   windows/setup-couchdb-@version@.exe: windows/couchdb.iss
> windows/README.txt FORCE
> -	$(INNO_COMPILER_EXECUTABLE) /q $<
> +	"$(INNO_COMPILER_EXECUTABLE)" /q $<
>   	@echo Windows Installer is at: `cygpath -a -w
> windows/setup-couchdb-@version@.exe`
>
>   windows/setup-couchdb-@version@.exe.md5: windows/setup-couchdb-@version@.exe