ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/scramdatestamp
Revision: 1.3
Committed: Wed Sep 20 16:47:59 2000 UTC (24 years, 7 months ago) by williamc
Branch: MAIN
CVS Tags: V0_19_7, V0_19_6, V0_19_6p1, V0_19_5, SFATEST, V0_19_4, V0_19_4_pre3, V0_19_4_pre2, V0_19_4_pre1, V0_19_3, V0_19_2, V0_19_1, V0_19_0, V0_18_5, V0_18_4, V_18_3_TEST, VO_18_3, V0_18_3, V0_18_2, V0_18_1
Branch point for: SCRAM_V1_BRANCH, V0_19_4_B
Changes since 1.2: +4 -16 lines
Log Message:
Match to new DateStampRecord

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);