whitespace fixes

This commit is contained in:
Doug MacEachern 2009-07-18 14:28:29 -07:00
parent 5320b7bf2a
commit 78150c0d9b
1 changed files with 17 additions and 17 deletions

View File

@ -21,12 +21,12 @@ sub archname {
return 'x86-winnt'; return 'x86-winnt';
} }
elsif ($os =~ /linux/) { elsif ($os =~ /linux/) {
if ($arch =~ /_64/) { if ($arch =~ /_64/) {
return 'amd64-linux'; return 'amd64-linux';
} }
else { else {
return 'x86-linux'; return 'x86-linux';
} }
} }
elsif ($os =~ /hpux/) { elsif ($os =~ /hpux/) {
if ($vers =~ /11\./) { if ($vers =~ /11\./) {
@ -47,18 +47,18 @@ sub archname {
elsif ($os =~ /darwin/) { elsif ($os =~ /darwin/) {
return 'universal-macosx'; return 'universal-macosx';
} }
elsif ($os =~ /freebsd/) { elsif ($os =~ /freebsd/) {
if ($arch =~ /.86/) { if ($arch =~ /.86/) {
if($vers =~ /6\../ ) { if($vers =~ /6\../ ) {
return 'x86-freebsd-6'; return 'x86-freebsd-6';
} }
} }
elsif ($arch =~ /amd64/) { elsif ($arch =~ /amd64/) {
if ($vers =~ /6\../ ) { if ($vers =~ /6\../ ) {
return 'amd64-freebsd-6'; return 'amd64-freebsd-6';
} }
} }
} }
return ''; return '';
} }