* Don't use the result of `uname -p' on x86_64 as it gives wacky

results on some machines. (NIX-69)
This commit is contained in:
Eelco Dolstra 2006-11-13 14:54:18 +00:00
parent 983c5e3fce
commit e790404318
1 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,9 @@ case $machine_name in
i*86)
machine_name=i686
;;
x86_64)
machine_name=x86_64
;;
ppc)
machine_name=powerpc
;;