forked from lix-project/lix
* 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:
parent
983c5e3fce
commit
e790404318
|
@ -32,6 +32,9 @@ case $machine_name in
|
|||
i*86)
|
||||
machine_name=i686
|
||||
;;
|
||||
x86_64)
|
||||
machine_name=x86_64
|
||||
;;
|
||||
ppc)
|
||||
machine_name=powerpc
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue