BUG: Fix escaping in link scripts

When generating escape sequences for the native build tool do not put in
Makefile escapes for paths generated into link scripts.  This fixes
putting "$ORIGIN" into the RPATH, and probably some other subtle
problems.
This commit is contained in:
Brad King 2008-08-05 09:55:02 -04:00
parent 090b90d727
commit e44a9c9299
1 changed files with 1 additions and 1 deletions

View File

@ -2579,7 +2579,7 @@ std::string cmLocalGenerator::EscapeForShell(const char* str, bool makeVars,
{
flags |= cmsysSystem_Shell_Flag_VSIDE;
}
else
else if(!this->LinkScriptShell)
{
flags |= cmsysSystem_Shell_Flag_Make;
}