Fix bug where script was referencing host_arch instead of host_cpu.
This commit is contained in:
parent
f30114ea7b
commit
b51d8b229d
1 changed files with 7 additions and 1 deletions
|
@ -20,10 +20,16 @@ m88kbcs | sysv* | irix*)
|
|||
|
||||
aix*)
|
||||
host_makefile_frag=config/hm-sysv
|
||||
case "${host_arch}" in
|
||||
case "${host_cpu}" in
|
||||
rs6000) files=sysdep-aix.h
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
|
||||
case "${host_vendor}" in
|
||||
sco* )
|
||||
host_makefile_frag=config/hm-sco
|
||||
;;
|
||||
esac
|
||||
|
||||
# per-target:
|
||||
|
|
Loading…
Reference in a new issue