summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-09 20:45:59 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-09 20:46:29 -0700
commit84a4bf66f1e85ebc4d75ff9db4bfa82147193632 (patch)
treeba86477a73ca36e77b3e0e0e9317e9fb66860196
parent1668253a2a090d22ad44ae5bd2413ea4e5c25da0 (diff)
Fix Solaris x86 platform detection in build.sh (uname -m returns "i86pc")
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 2093644..cbb61b7 100755
--- a/build.sh
+++ b/build.sh
@@ -822,7 +822,7 @@ build_driver_input() {
# And some drivers are only buildable on some CPUs.
case $HOST_CPU in
- i*86 | amd64 | x86_64)
+ i*86 | amd64 | x86_64 | i86pc)
build driver xf86-input-vmmouse
;;
esac
@@ -870,7 +870,7 @@ build_driver_video() {
build driver xf86-video-sunleo
build driver xf86-video-suntcx
;;
- i*86 | amd64 | x86_64)
+ i*86 | amd64 | x86_64 | i86pc)
build driver xf86-video-i740
build driver xf86-video-intel
;;