add amd64-linux

This commit is contained in:
Doug MacEachern 2007-09-03 19:47:06 +00:00
parent 4a504e6cf4
commit 874ed27544
1 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,12 @@ sub archname {
return 'x86-winnt';
}
elsif ($os =~ /linux/) {
return 'x86-linux';
if ($arch =~ /_64/) {
return 'amd64-linux';
}
else {
return 'x86-linux';
}
}
elsif ($os =~ /hpux/) {
if ($vers =~ /11\./) {