aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-02-02 18:59:42 +0000
committermarha <marha@users.sourceforge.net>2011-02-02 18:59:42 +0000
commit749d0082379b4e508c0890580085d9a7531204ff (patch)
tree3df4260c6590c28fc24ef01505622d2737c6fbd0 /tools/mhmake
parentb138c1d41b48bf51a834f4a2b39f5b24b62aa0ae (diff)
downloadvcxsrv-749d0082379b4e508c0890580085d9a7531204ff.tar.gz
vcxsrv-749d0082379b4e508c0890580085d9a7531204ff.tar.bz2
vcxsrv-749d0082379b4e508c0890580085d9a7531204ff.zip
Solved problem of doing an mkdir on an existing dir
Diffstat (limited to 'tools/mhmake')
-rw-r--r--tools/mhmake/src/util.cpp1
-rw-r--r--tools/mhmake/src/util.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/mhmake/src/util.cpp b/tools/mhmake/src/util.cpp
index 43104adea..f678e7adf 100644
--- a/tools/mhmake/src/util.cpp
+++ b/tools/mhmake/src/util.cpp
@@ -762,6 +762,7 @@ bool MakeDirs(const fileinfo *pDir)
cerr << "mkdir function failed for directory " << QuoteFileName(pDir->GetFullFileName()) << endl;
return false;
}
+ pDir->InvalidateDate(); // Directory created successfully, so invalidate the date
}
return true;
}
diff --git a/tools/mhmake/src/util.h b/tools/mhmake/src/util.h
index 8755d4485..fea80c070 100644
--- a/tools/mhmake/src/util.h
+++ b/tools/mhmake/src/util.h
@@ -50,7 +50,7 @@
#define PLATFORM "linux"
#endif
-#define MHMAKEVER "2.4.2"
+#define MHMAKEVER "2.4.3"
class makecommand
{