cvsuser 01/12/31 12:11:04
Modified: . Configure.pl
Log:
Force the time on some copied files to be 'now' to make the Win builds
much less annoying.
Courtesy of "Jason Diamond" <[EMAIL PROTECTED]>
Revision Changes Path
1.55 +5 -2 parrot/Configure.pl
Index: Configure.pl
===================================================================
RCS file: /home/perlcvs/parrot/Configure.pl,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -w -r1.54 -r1.55
--- Configure.pl 31 Dec 2001 20:07:54 -0000 1.54
+++ Configure.pl 31 Dec 2001 20:11:04 -0000 1.55
@@ -2,7 +2,7 @@
#
# Configure.pl
#
-# $Id: Configure.pl,v 1.54 2001/12/31 20:07:54 dan Exp $
+# $Id: Configure.pl,v 1.55 2001/12/31 20:11:04 dan Exp $
#
# Author: Brent Dax
#
@@ -42,7 +42,7 @@
if($opt_version) {
print "Parrot Version $parrot_version Configure\n";
- print '$Id: Configure.pl,v 1.54 2001/12/31 20:07:54 dan Exp $' . "\n";
+ print '$Id: Configure.pl,v 1.55 2001/12/31 20:11:04 dan Exp $' . "\n";
exit;
}
@@ -337,6 +337,9 @@
copy("platforms/generic.h", "include/parrot/platform.h");
copy("platforms/generic.c", "platform.c");
}
+
+my $now = time;
+utime $now, $now, "include/parrot/platform.h", "platform.c";
unless( $c{debugging} ) {
$c{ld_debug} = ' ';