diff options
-rwxr-xr-x | packages/linux-kernel/build-intel-qat.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/linux-kernel/build-intel-qat.sh b/packages/linux-kernel/build-intel-qat.sh index a3894009..1a0dedb9 100755 --- a/packages/linux-kernel/build-intel-qat.sh +++ b/packages/linux-kernel/build-intel-qat.sh @@ -2,8 +2,8 @@ CWD=$(pwd) KERNEL_VAR_FILE=${CWD}/kernel-vars -if ! dpkg-architecture -ii386 || ! dpkg-architecture -iamd64; then - echo "Intel-QAT is only buildable on x86 platforms" +if ! dpkg-architecture -iamd64; then + echo "Intel-QAT is only buildable on amd64 platforms" exit 0 fi |