ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/scramdatestamp
Revision: 1.4
Committed: Fri Dec 10 13:57:46 2004 UTC (20 years, 5 months ago) by sashby
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 #
2 # Check a product composition file to see if any of its components have
3 # changed
4 #
5
6 use FileHandle;
7 use BuildSystem::DateStampRecord;
8
9 my $datefile=shift @ARGV;
10 my $productfile=shift @ARGV;
11 my @depfiles=@ARGV;
12
13 my $ds=BuildSystem::DateStampRecord->new($datefile);
14 $ds->product($productfile);
15 $ds->makerecord(@depfiles);