summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmUseMangledMesaCommand.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmUseMangledMesaCommand.cxx b/Source/cmUseMangledMesaCommand.cxx
index 3c3f3f6..a762fa1 100644
--- a/Source/cmUseMangledMesaCommand.cxx
+++ b/Source/cmUseMangledMesaCommand.cxx
@@ -29,6 +29,17 @@ bool cmUseMangledMesaCommand::InitialPass(std::vector<std::string> const& args)
return false;
}
const char* inputDir = args[0].c_str();
+ std::string glh = inputDir;
+ glh += "/";
+ glh += "gl.h";
+ if(!cmSystemTools::FileExists(glh.c_str()))
+ {
+ std::string e = "Bad path to Mesa, could not find: ";
+ e += glh;
+ e += " ";
+ this->SetError(e.c_str());
+ return false;
+ }
const char* destDir = args[1].c_str();
std::vector<std::string> files;
cmSystemTools::Glob(inputDir, "\\.h$", files);