ENH: put the if in the right place

This commit is contained in:
Bill Hoffman 2006-09-12 10:21:47 -04:00
parent 0406aace34
commit eb3da1cdf3
1 changed files with 5 additions and 5 deletions

View File

@ -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());
}
}
}
}