From 8175b100789f8c2fda86fc59c1e31a52fc417f9c Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 12 Feb 2008 10:19:38 -0500 Subject: BUG: Disable enforcement of unique target names until CTestTargets can be fixed. --- Source/cmMakefile.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 1f8c602..5834d53 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3156,6 +3156,7 @@ bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg) msg = e.str(); return false; } +#if 0 /* disable until CTestTargets can be fixed */ else if(!this->NeedBackwardsCompatibility(2, 4)) { // The conflict is with a non-imported target. Produce an error @@ -3174,6 +3175,7 @@ bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg) msg = e.str(); return false; } +#endif } return true; } -- cgit v0.12