diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 8cddaf5..633c5c9 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -870,7 +870,7 @@ void cmMakefile::ExpandVariablesInString(std::string& source, // $ENV{var} case else if(markerPos+4 < source.size() && source[markerPos+4] == '{' && - !source.compare(markerPos+1, 3, "ENV")) + !source.substr(markerPos+1, 3).compare("ENV")) { endVariableMarker = '}'; markerStartSize = 5; |