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

View File

@ -1123,13 +1123,13 @@ void cmMakefileTargetGenerator
depends.push_back(location); depends.push_back(location);
} }
} }
}
// depend on full path libs as well // depend on full path libs as well
else if(cmSystemTools::FileIsFullPath(lib->first.c_str())) else if(cmSystemTools::FileIsFullPath(lib->first.c_str()))
{ {
depends.push_back(lib->first.c_str()); depends.push_back(lib->first.c_str());
} }
} }
}
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------