Changeset 43099
- Timestamp:
- Sep 22, 2026, 3:14:54 PM (41 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pstamp-20260421/ippScripts/scripts/ipp_inject_fileset.pl
r43082 r43099 53 53 my $pxinject = can_run('pxinject') or die "Can't find pxinject\n"; 54 54 55 # tess_id needs to be an absolute path, or it must start with file://, path://, or neb:// 55 # if tess_id is not defined in the list of tessellations in ipprc, 56 # then tess_id needs to be an absolute path, or it must start with 57 # file://, path://, or neb:// 56 58 if ($tess_id) { 57 $tess_id = &fixpath ($tess_id); 59 # test if tess_id is listed in the TESSELLATION metadata block 60 my $tess_dir = $ipprc->tessellation_catdir( $tess_id ); # Tessellation catdir for DVO 61 unless (defined $tess_dir) { die "configuration error"; } 62 if ($tess_dir eq $tess_id) { 63 # if $tess_dir matches $tess_id, it must be a filename, not a TESSELLATION entry 64 $tess_id = &fixpath ($tess_dir); 65 } 58 66 } 59 67 60 68 # dvodb needs to be an absolute path, or it must start with file://, path://, or neb:// 61 69 if ($dvo_db) { 62 $dvo_db = &fixpath ($dvo_db); 70 # test if dvo_db is listed in the DVO.CATDIRS metadata block 71 my $catdir = $ipprc->dvo_catdir( $dvo_db ); # catdirs for DVO 72 unless (defined $catdir) { die "configuration error"; } 73 if ($catdir eq $dvo_db) { 74 # if $catdir matches $dvo_db, it must be a filename, not a DVO.CATDIRS entry 75 $dvo_db = &fixpath ($catdir); 76 } 63 77 } 64 78
Note:
See TracChangeset
for help on using the changeset viewer.
