mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 17:03:40 +00:00
Implement <ifnot>
svn path=/trunk/; revision=15934
This commit is contained in:
parent
2cc8819bc6
commit
8f5dd38cdd
4 changed files with 30 additions and 5 deletions
|
@ -731,7 +731,8 @@ MingwModuleHandler::GenerateMacros (
|
|||
{
|
||||
fprintf (
|
||||
fMakefile,
|
||||
"ifeq (\"$(%s)\",\"%s\")\n",
|
||||
"%s (\"$(%s)\",\"%s\")\n",
|
||||
rIf.negated ? "ifneq" : "ifeq",
|
||||
rIf.property.c_str(),
|
||||
rIf.value.c_str() );
|
||||
GenerateMacros (
|
||||
|
@ -815,7 +816,8 @@ MingwModuleHandler::GenerateObjectMacros (
|
|||
{
|
||||
fprintf (
|
||||
fMakefile,
|
||||
"ifeq (\"$(%s)\",\"%s\")\n",
|
||||
"%s (\"$(%s)\",\"%s\")\n",
|
||||
rIf.negated ? "ifneq" : "ifeq",
|
||||
rIf.property.c_str(),
|
||||
rIf.value.c_str() );
|
||||
GenerateObjectMacros (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue