proxmark3: hack around parallel build

This commit is contained in:
Rick Farina (Zero_Chaos) 2023-02-15 12:00:52 -05:00
parent 507faef525
commit 7f6bd2d269
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 12 additions and 8 deletions

View file

@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
inherit udev toolchain-funcs
@ -129,11 +129,13 @@ src_compile(){
use qt || export SKIPQT=1
use bluez || export SKIPBT=1
if use firmware; then
emake -j1 ${EMAKE_COMMON} client
emake ${EMAKE_COMMON} all
elif use deprecated; then
emake ${EMAKE_COMMON} client mfkey nonce2key
emake -j1 ${EMAKE_COMMON} client
emake ${EMAKE_COMMON} mfkey nonce2key
else
emake ${EMAKE_COMMON} client
emake -j1 ${EMAKE_COMMON} client
fi
}

View file

@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
inherit udev toolchain-funcs
@ -129,11 +129,13 @@ src_compile(){
use qt || export SKIPQT=1
use bluez || export SKIPBT=1
if use firmware; then
emake -j1 ${EMAKE_COMMON} client
emake ${EMAKE_COMMON} all
elif use deprecated; then
emake ${EMAKE_COMMON} client mfkey nonce2key
emake -j1 ${EMAKE_COMMON} client
emake ${EMAKE_COMMON} mfkey nonce2key
else
emake ${EMAKE_COMMON} client
emake -j1 ${EMAKE_COMMON} client
fi
}