summaryrefslogtreecommitdiff
path: root/build/fixwin32mak.pl
diff options
context:
space:
mode:
author(no author) <(no author)@13f79535-47bb-0310-9956-ffa450edef68>2001-08-17 07:30:59 +0000
committer(no author) <(no author)@13f79535-47bb-0310-9956-ffa450edef68>2001-08-17 07:30:59 +0000
commitaa6168ab6b228dd049e622a92e8da38c092e1a8f (patch)
tree72d2a9b6462fedfbe89eda08cd53073f81457f7d /build/fixwin32mak.pl
parent02adb04aa09c2a1cf7f2b147e1684bf12acf6165 (diff)
downloadlibapr-aa6168ab6b228dd049e622a92e8da38c092e1a8f.tar.gz
This commit was manufactured by cvs2svn to create tagAPACHE_2_0_24
'APACHE_2_0_24'. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/tags/APACHE_2_0_24@62190 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/fixwin32mak.pl')
-rw-r--r--build/fixwin32mak.pl16
1 files changed, 16 insertions, 0 deletions
diff --git a/build/fixwin32mak.pl b/build/fixwin32mak.pl
index d7ca5bd15..c3f6acf86 100644
--- a/build/fixwin32mak.pl
+++ b/build/fixwin32mak.pl
@@ -48,5 +48,21 @@ print "Processing " . $_ . "\n";
else {
unlink $tname;
}
+ $dname = $oname;
+ $dname =~ s/.mak$/.dsp/;
+ @dstat = stat($dname);
+ @ostat = stat($oname);
+ if ($ostat[9] != $dstat[9]) {
+ @onames = ($oname);
+ utime $dstat[9], $dstat[9], @onames;
+ print "Touched datestamp for " . $oname . " in " . $File::Find::dir . "\n";
+ }
+ $oname =~ s/.mak$/.dep/;
+ @ostat = stat($oname);
+ if ($ostat[9] != $dstat[9]) {
+ @onames = ($oname);
+ utime $dstat[9], $dstat[9], @onames;
+ print "Touched datestamp for " . $oname . " in " . $File::Find::dir . "\n";
+ }
}
}