fix PR3488: llvm-ar r doesn't replace existing files

Patch by Daniel Shelton!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63870 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-02-05 17:58:39 +00:00
parent 7a2e7e5c20
commit 7d8f9b6133

View File

@ -638,7 +638,7 @@ doReplaceOrInsert(std::string* ErrMsg) {
const sys::FileStatus *si = PwS.getFileStatus(false, &Err);
if (!si)
return true;
if (si->isDir) {
if (!si->isDir) {
if (OnlyUpdate) {
// Replace the item only if it is newer.
if (si->modTime > I->getModTime())