diff options
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 958dd42..cd8239c 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1123,11 +1123,11 @@ void cmMakefileTargetGenerator depends.push_back(location); } } - } - // depend on full path libs as well - else if(cmSystemTools::FileIsFullPath(lib->first.c_str())) - { - depends.push_back(lib->first.c_str()); + // depend on full path libs as well + else if(cmSystemTools::FileIsFullPath(lib->first.c_str())) + { + depends.push_back(lib->first.c_str()); + } } } } |