add amd64-linux
This commit is contained in:
parent
4a504e6cf4
commit
874ed27544
|
@ -20,8 +20,13 @@ sub archname {
|
||||||
return 'x86-winnt';
|
return 'x86-winnt';
|
||||||
}
|
}
|
||||||
elsif ($os =~ /linux/) {
|
elsif ($os =~ /linux/) {
|
||||||
|
if ($arch =~ /_64/) {
|
||||||
|
return 'amd64-linux';
|
||||||
|
}
|
||||||
|
else {
|
||||||
return 'x86-linux';
|
return 'x86-linux';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
elsif ($os =~ /hpux/) {
|
elsif ($os =~ /hpux/) {
|
||||||
if ($vers =~ /11\./) {
|
if ($vers =~ /11\./) {
|
||||||
return 'pa-hpux-11';
|
return 'pa-hpux-11';
|
||||||
|
|
Loading…
Reference in New Issue