diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2019-05-05 17:36:02 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2019-05-05 17:36:02 +0100 |
commit | 2781a8548ad45be6193a07b151eca96973f71f6d (patch) | |
tree | 7581a7928423d80db83a2bdc59817301e563e620 /eclass/linux-build.eclass | |
parent | eclass/linux-build: Run make prepare (diff) | |
download | portage-2781a8548ad45be6193a07b151eca96973f71f6d.tar.xz |
eclass/linux-build: run default make since vmlinux and modules are built
with this target
Diffstat (limited to 'eclass/linux-build.eclass')
-rw-r--r-- | eclass/linux-build.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass index 0432530b..67a12f2a 100644 --- a/eclass/linux-build.eclass +++ b/eclass/linux-build.eclass @@ -344,12 +344,7 @@ linux-build_src_prepare() { _linux-build_src_compile_build() { einfo "Building kernel" - emake bzImage "${myopt[@]}" - - if _linux-build_configval MODULES ; then - einfo "Building modules" - emake modules "${myopt[@]}" - fi + emake "${myopt[@]}" } linux-build_src_compile() { |