mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
Only build acpid on x86_64
This commit is contained in:
parent
5fc093ca9a
commit
40aacaff30
@ -5,7 +5,6 @@ git = "https://gitlab.redox-os.org/redox-os/drivers.git"
|
||||
template = "custom"
|
||||
script = """
|
||||
BINS=(
|
||||
acpid
|
||||
ahcid
|
||||
nvmed
|
||||
pcid
|
||||
@ -13,9 +12,12 @@ BINS=(
|
||||
)
|
||||
|
||||
case "${TARGET}" in
|
||||
i686-unknown-redox | x86_64-unknown-redox)
|
||||
i686-unknown-redox)
|
||||
BINS+=(ps2d)
|
||||
;;
|
||||
x86_64-unknown-redox)
|
||||
BINS+=(acpid ps2d)
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
Loading…
Reference in New Issue
Block a user