diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-14 10:11:58 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-14 10:11:58 +0000 |
commit | dbb99e4777bca43c08ad9f6c492c3dda29731cee (patch) | |
tree | e2a5549d1ede4113c890de3352eb5e795f2a8d89 /cpp/src | |
parent | Converting 2.0 projects and solutions to 2.0. (diff) | |
download | ice-dbb99e4777bca43c08ad9f6c492c3dda29731cee.tar.bz2 ice-dbb99e4777bca43c08ad9f6c492c3dda29731cee.tar.xz ice-dbb99e4777bca43c08ad9f6c492c3dda29731cee.zip |
Fixed quoting problems around InputPath causing compilation errors if
sources are in a directory with space
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/ice.dsp | 4 | ||||
-rwxr-xr-x | cpp/src/IceGrid/icegridadmin.dsp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/ice.dsp b/cpp/src/Ice/ice.dsp index 2091c064c4d..221fc094c10 100644 --- a/cpp/src/Ice/ice.dsp +++ b/cpp/src/Ice/ice.dsp @@ -1284,7 +1284,7 @@ InputPath=.\EventLoggerMsg.mc InputName=EventLoggerMsg
BuildCmds= \
- mc $(InputPath) \
+ mc "$(InputPath)" \
rc -r -fo $(InputName).res $(InputName).rc \
@@ -1302,7 +1302,7 @@ InputPath=.\EventLoggerMsg.mc InputName=EventLoggerMsg
BuildCmds= \
- mc $(InputPath) \
+ mc "$(InputPath)" \
rc -r -fo $(InputName).res $(InputName).rc \
diff --git a/cpp/src/IceGrid/icegridadmin.dsp b/cpp/src/IceGrid/icegridadmin.dsp index 10e85cce07a..4691edf26ab 100755 --- a/cpp/src/IceGrid/icegridadmin.dsp +++ b/cpp/src/IceGrid/icegridadmin.dsp @@ -184,7 +184,7 @@ USERDEP__FILEP="..\..\bin\slice2cpp.exe" "..\..\lib\slice.lib" InputPath=..\..\slice\IceGrid\FileParser.ice
BuildCmds= \
- ..\..\bin\slice2cpp.exe --ice --include-dir IceGrid -I../../slice $(InputPath) \
+ ..\..\bin\slice2cpp.exe --ice --include-dir IceGrid -I../../slice "$(InputPath)" \
move FileParser.h ..\..\include\IceGrid \
@@ -202,7 +202,7 @@ USERDEP__FILEP="..\..\bin\slice2cpp.exe" "..\..\lib\sliced.lib" InputPath=..\..\slice\IceGrid\FileParser.ice
BuildCmds= \
- ..\..\bin\slice2cpp.exe --ice --include-dir IceGrid -I../../slice $(InputPath) \
+ ..\..\bin\slice2cpp.exe --ice --include-dir IceGrid -I../../slice "$(InputPath)" \
move FileParser.h ..\..\include\IceGrid \
|