IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Opened 18 years ago

#1127 new defect

pschecklibs -build selects tagsets/ipp-2.6.libs even if a 2.6.1 tagset is present

Reported by: jester@… Owned by: eugene
Priority: high Milestone:
Component: psconfig Version: 2.6
Severity: normal Keywords:
Cc:

Description

psbuild selects the "latest" available tagset thus:

if ( @ARGV == 0) {

@list = <$tagsets/*.libs>;
$file = $list[-1];

} else {

$file = "$tagsets/$ARGV[0].libs";

}

But if 2.6.1 and 2.6 are both present, 2.6 appears later in the expansion of *.libs than 2.6.1. because "1" appears before "l" in a lexicographic ordering.

This seems to be no problem in 2.6 but might cause confusion later.

The only quick fix I can think of is calling the 2.6 release 2.6.0 from the beginning.

Change History (0)

Note: See TracTickets for help on using tickets.