summaryrefslogtreecommitdiff
path: root/dmake/make.c
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-12-01 16:58:54 +0000
committerRüdiger Timm <rt@openoffice.org>2003-12-01 16:58:54 +0000
commit169467e5b2704e3be46798ffb34a7fd67b582ba0 (patch)
tree5820ce2ffc2b3263c70b98e22eaa3427646fe779 /dmake/make.c
parentce7a8ada41b04a372cbabc7a986368f4798f671e (diff)
INTEGRATION: CWS ooo20031110 (1.3.24); FILE MERGED
2003/10/19 22:38:29 waratah 1.3.24.1: #i20504# Correct processing of library code, not always built
Diffstat (limited to 'dmake/make.c')
-rw-r--r--dmake/make.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dmake/make.c b/dmake/make.c
index b3f6773c176c..c6e84c982af5 100644
--- a/dmake/make.c
+++ b/dmake/make.c
@@ -2,9 +2,9 @@
*
* $RCSfile: make.c,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-03-25 14:02:12 $
+ * last change: $Author: rt $ $Date: 2003-12-01 17:58:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -584,7 +584,7 @@ CELLPTR setdirroot;
* is newer then set the time stamps so that the archived member is
* replaced. */
if( cp->ce_attr & A_LIBRARY )
- if( tcp->ce_time < cp->ce_time ) {
+ if( tcp->ce_time <= cp->ce_time ) {
time_t mtime = Do_stat( name, tcp->ce_lib, NIL(char *), FALSE );
if( mtime < tcp->ce_time ) tcp->ce_time = cp->ce_time+1L;
}