wrowe 01/08/16 23:46:30
Modified: build fixwin32mak.pl
Log:
Win32 VS6.0 projects require the .dep's file, let's touch those as well
when we are syncing the timestamps to the source .dsp.
Revision Changes Path
1.4 +7 -0 apr/build/fixwin32mak.pl
Index: fixwin32mak.pl
===================================================================
RCS file: /home/cvs/apr/build/fixwin32mak.pl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fixwin32mak.pl 2001/08/17 01:38:51 1.3
+++ fixwin32mak.pl 2001/08/17 06:46:30 1.4
@@ -57,5 +57,12 @@
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";
+ }
}
}