diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-09-12 14:21:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-09-12 14:21:47 (GMT) |
commit | eb3da1cdf3c771c90fec61bcddcdd209f47ba5eb (patch) | |
tree | 1385be98ee9fb9216145b1fd9f9fc613e8ef789c /Source/cmMakefileTargetGenerator.cxx | |
parent | 0406aace34da3208e22371e1393cfa38bd3b9632 (diff) | |
download | CMake-eb3da1cdf3c771c90fec61bcddcdd209f47ba5eb.zip CMake-eb3da1cdf3c771c90fec61bcddcdd209f47ba5eb.tar.gz CMake-eb3da1cdf3c771c90fec61bcddcdd209f47ba5eb.tar.bz2 |
ENH: put the if in the right place
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-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()); + } } } } |