Ticket #653 (closed bug: fixed)
[PATCH] remove "." from architecture names
Reported by: | rrauenza | Owned by: | Infinoid |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | none | Version: | 1.1.0 |
Severity: | medium | Keywords: | |
Cc: | Language: | ||
Patch status: | applied | Platform: |
Description
Referencing bug #645 (I couldn't reopen it)
The s|\.|_|g was put into the wrong place. It needs to go above the split -- immediately after the assignment.
i.e.,
my $archname = $conf->data->get('archname'); # This was added to convert IA64.ARCHREV_0 on HP-UX, TT #645 $archname =~ s|\.|_|g; my ( $cpuarch, $osname ) = split( /-/, $archname );
Change History
Note: See
TracTickets for help on using
tickets.