in reply to Re^2: Tell if arch is HP or HPIA64
in thread Tell if arch is HP or HPIA64

Thanks all

Since I'm doing this from within a script and only have the issue on HP, I have the following:

my $os = $^O; my $OS = "Win32"; SWITCH: { $os =~ /^s/i && do { $OS = "SunOS"; last SWITCH; }; $os =~ /^l/i && do { $OS = "Linux"; last SWITCH; }; $os =~ /^a/i && do { $OS = "AIX"; last SWITCH; }; $os =~ /^h/i && do { $OS = $Config{'archname'} =~ /64/ ? "HPIA64" : + "HP"; last SWITCH; }; }

Thanks