ERR: Fixed string literal->char* conversion warning.
This commit is contained in:
parent
ce0f0838e1
commit
cbef9d224d
|
@ -80,7 +80,8 @@ cmake::cmake()
|
||||||
// encode the MAKEFLAGS variable in a strange way.
|
// encode the MAKEFLAGS variable in a strange way.
|
||||||
if(getenv("MAKEFLAGS"))
|
if(getenv("MAKEFLAGS"))
|
||||||
{
|
{
|
||||||
putenv("MAKEFLAGS=");
|
static char makeflags[] = "MAKEFLAGS=";
|
||||||
|
putenv(makeflags);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_Local = false;
|
m_Local = false;
|
||||||
|
|
Loading…
Reference in New Issue