Skip to content
Snippets Groups Projects
Commit 40aacaff authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Only build acpid on x86_64

parent 5fc093ca
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,6 @@ git = "https://gitlab.redox-os.org/redox-os/drivers.git" ...@@ -5,7 +5,6 @@ git = "https://gitlab.redox-os.org/redox-os/drivers.git"
template = "custom" template = "custom"
script = """ script = """
BINS=( BINS=(
acpid
ahcid ahcid
nvmed nvmed
pcid pcid
...@@ -13,9 +12,12 @@ BINS=( ...@@ -13,9 +12,12 @@ BINS=(
) )
case "${TARGET}" in case "${TARGET}" in
i686-unknown-redox | x86_64-unknown-redox) i686-unknown-redox)
BINS+=(ps2d) BINS+=(ps2d)
;; ;;
x86_64-unknown-redox)
BINS+=(acpid ps2d)
;;
*) *)
;; ;;
esac esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment