summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorBertrand Jacquin <bertrand@jacquin.bzh>2021-02-21 00:03:52 +0000
committerBertrand Jacquin <bertrand@jacquin.bzh>2021-02-21 00:03:52 +0000
commit556a4447dc18da08a24f0e1f4028c9b8c7e4f612 (patch)
tree4507ee9065c787cea3f3bd72e879a57124cc7c42 /eclass
parenteclass/linux-build: remove old EXTRA_KERNEL_PATCHES (diff)
downloadportage-556a4447dc18da08a24f0e1f4028c9b8c7e4f612.tar.xz
eclass/linux-build: add missing STRIP
Diffstat (limited to 'eclass')
-rw-r--r--eclass/linux-build.eclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass
index bc28ced3..92f281f6 100644
--- a/eclass/linux-build.eclass
+++ b/eclass/linux-build.eclass
@@ -497,12 +497,13 @@ linux-build_src_prepare() {
CC="$(tc-getCC)" CXX="$(tc-getCXX)"
LD="$(tc-getLD)"
AR="$(tc-getAR)"
- AS="$(tc-getAS)"
+ AS="$(tc-getAS)" # Removed in v5.7
NM="$(tc-getNM)"
OBJCOPY="$(tc-getOBJCOPY)"
OBJDUMP="$(tc-getOBJDUMP)"
READELF="$(tc-getREADELF)"
PKG_CONFIG="$(tc-getPKG_CONFIG)"
+ STRIP="$(tc-getSTRIP)"
ARCH="$(tc-arch-kernel)" SUBARCH="$(tc-arch-kernel)"
)