BUG: Do not escape make variable references in VS additional options.

This commit is contained in:
Brad King 2008-06-30 09:57:07 -04:00
parent 5b09901f69
commit b73cac6409
1 changed files with 4 additions and 2 deletions

View File

@ -2173,8 +2173,10 @@ void cmLocalVisualStudio7GeneratorOptions::HandleFlag(const char* flag)
// This option is not known. Store it in the output flags.
this->FlagString += " ";
this->FlagString +=
cmSystemTools::EscapeWindowsShellArgument(flag,
cmsysSystem_Shell_Flag_VSIDE);
cmSystemTools::EscapeWindowsShellArgument(
flag,
cmsysSystem_Shell_Flag_AllowMakeVariables |
cmsysSystem_Shell_Flag_VSIDE);
}
//----------------------------------------------------------------------------