From 08da8742709d6da74d1a17de46990ec5aaf3ad0f Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 18 Apr 2015 14:50:34 +0200 Subject: [PATCH] cmMakefile: Split a conditional. --- Source/cmMakefile.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 029fd3dedd..5ab1928a83 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -557,6 +557,10 @@ bool cmMakefile::ReadListFile(const char* filename_in, this->cmStartDirectory.c_str()); filenametoread = filename_abs.c_str(); } + } + + if (external_in) + { external_abs = cmSystemTools::CollapseFullPath(external_in, this->cmStartDirectory.c_str());