Skip to content
Snippets Groups Projects
Verified Commit 9fde2c02 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Only build ps2d on x86

parent 9de09376
Branches
Tags
No related merge requests found
...@@ -9,10 +9,17 @@ BINS=( ...@@ -9,10 +9,17 @@ BINS=(
ahcid ahcid
nvmed nvmed
pcid pcid
ps2d
vesad vesad
) )
case "${ARCH}" in
i686 | x86_64)
BINS+=(ps2d)
;;
*)
;;
esac
mkdir -pv "${COOKBOOK_STAGE}/bin" mkdir -pv "${COOKBOOK_STAGE}/bin"
for bin in "${BINS[@]}" for bin in "${BINS[@]}"
do do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment