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,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';