- Timestamp:
- Jul 17, 2014, 12:36:19 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-ops-20130712
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ippScripts/scripts/dist_bundle.pl (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-ops-20130712
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ippScripts/scripts/dist_bundle.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/dist_bundle.pl merged: 36555
r36458 r37068 67 67 ); 68 68 my %empty_cleaned = (); 69 70 69 my %empty_cleaned = (); 71 70 72 71 # Look for programs we need … … 496 495 } elsif ($stage eq "stack") { 497 496 $type = $stack_cleaned{$rule}; 498 } elsif ($stage eq "sky" or $stage eq 'skycal' or $stage eq 'stack_summary' ) {497 } elsif ($stage eq "sky" or $stage eq 'skycal' or $stage eq 'stack_summary' or $stage eq 'ff') { 499 498 $type = $empty_cleaned{$rule}; 499 } elsif ($stage eq "skycal") { 500 $type = $skycal_cleaned{$rule}; 500 501 } else { 501 502 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); … … 588 589 # stack_summary stage does not use a config dump file. 589 590 return build_stack_summary_file_list($path_base, \@file_list); 591 } elsif ($stage eq "ff") { 592 if ($component eq 'summary') { 593 # full force summary does not use a config dump file. Cobble together a file list 594 return build_ff_summary_file_list($path_base, \@file_list); 595 } else { 596 $config_file_rule = "PSPHOT.SKY.CONFIG"; 597 } 590 598 } else { 591 599 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); … … 742 750 } 743 751 752 # psphotFullForceSummary does not produce a config dump file cobble together a file list 753 sub build_ff_summary_file_list { 754 my ($path_base, $file_list) = @_; 755 756 my %cmf ; 757 $cmf{file_rule} = "SOURCES"; 758 $cmf{name} = "$path_base.cmf"; 759 push @$file_list, \%cmf; 760 761 my %log; 762 $log{file_rule} = "LOG"; 763 $log{name} = "$path_base.log"; 764 push @$file_list, \%log; 765 766 return $file_list; 767 } 768 744 769 sub my_die 745 770 { - Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.
