toon-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Toon-members] tag/build install.bat


From: Gerhard Reitmayr
Subject: [Toon-members] tag/build install.bat
Date: Wed, 17 Nov 2010 10:34:36 +0000

CVSROOT:        /cvsroot/toon
Module name:    tag
Changes by:     Gerhard Reitmayr <gerhard>      10/11/17 10:34:36

Modified files:
        build          : install.bat 

Log message:
        update to build files to support spaces in path names

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/tag/build/install.bat?cvsroot=toon&r1=1.1&r2=1.2

Patches:
Index: install.bat
===================================================================
RCS file: /cvsroot/toon/tag/build/install.bat,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- install.bat 5 Aug 2009 14:18:43 -0000       1.1
+++ install.bat 17 Nov 2010 10:34:36 -0000      1.2
@@ -14,7 +14,7 @@
 exit
 
 :includedirset
-if exist %INCLUDEDIR%\*.* goto includedirexists
+if exist "%INCLUDEDIR%\*.*" goto includedirexists
 echo The INCLUDEDIR environment variable must point to an existing directory
 echo to be able to perform the installation procedure.
 exit
@@ -27,7 +27,7 @@
 exit
 
 :libdirset
-if exist %LIBDIR%\*.* goto libdirexists
+if exist "%LIBDIR%\*.*" goto libdirexists
 echo The LIBDIR environment variable must point to an existing directory
 echo to be able to perform the installation procedure.
 exit
@@ -39,7 +39,7 @@
 exit
 
 :bindirset
-if exist %BINDIR%\*.* goto bindirexists
+if exist "%BINDIR%\*.*" goto bindirexists
 echo The BINDIR environment variable must point to an existing directory
 echo to be able to perform the installation procedure.
 exit
@@ -54,17 +54,17 @@
 if "%headersdir%"=="" goto skipheaders
 if "%headersname%"=="" goto skipheaders
 
-xcopy /S /I /Y %headersdir% %INCLUDEDIR%\%headersname%
+xcopy /S /I /Y %headersdir% "%INCLUDEDIR%\%headersname%"
 
 :skipheaders
 
 if "%libs%"=="" goto skiplibs
-xcopy /S /I /Y %libs% %LIBDIR%
+xcopy /S /I /Y %libs% "%LIBDIR%"
 
 :skiplibs
 
 if "%bins%"=="" goto skipbins
-xcopy /S /I /Y %bins% %BINDIR%
+xcopy /S /I /Y %bins% "%BINDIR%"
 
 :skipbins
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]