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 |
Log Message: | *** empty log message *** |
# | User | Rev | Content |
---|---|---|---|
1 | williamc | 1.2 | # |
2 | # Check a product composition file to see if any of its components have | ||
3 | # changed | ||
4 | # | ||
5 | |||
6 | use FileHandle; | ||
7 | williamc | 1.3 | use BuildSystem::DateStampRecord; |
8 | williamc | 1.2 | |
9 | my $datefile=shift @ARGV; | ||
10 | my $productfile=shift @ARGV; | ||
11 | my @depfiles=@ARGV; | ||
12 | |||
13 | williamc | 1.3 | my $ds=BuildSystem::DateStampRecord->new($datefile); |
14 | $ds->product($productfile); | ||
15 | $ds->makerecord(@depfiles); |