Browse Source

minor bug fix

Ken Martin 22 years ago
parent
commit
eee69632d6

+ 1 - 1
Source/cmGetSourceFilePropertyCommand.cxx

@@ -39,7 +39,7 @@ bool cmGetSourceFilePropertyCommand::InitialPass(
       }
       }
     }
     }
 
 
-  m_Makefile->AddDefinition(var, "NOT_FOUND");
+  m_Makefile->AddDefinition(var, "NOTFOUND");
   return true;
   return true;
 }
 }
 
 

+ 1 - 1
Source/cmGetTargetPropertyCommand.cxx

@@ -39,7 +39,7 @@ bool cmGetTargetPropertyCommand::InitialPass(
       return true;
       return true;
       }
       }
     }
     }
-  m_Makefile->AddDefinition(var, "NOT_FOUND");
+  m_Makefile->AddDefinition(var, "NOTFOUND");
   return true;
   return true;
 }
 }