diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2016-08-28 17:52:41 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2016-08-28 17:57:06 +0100 |
commit | bed73bb3090d6baf4e197ce6c93dd39679d30a69 (patch) | |
tree | 86090c508c86e98b7137e30c04f31511871e76af /eclass/linux-build.eclass | |
parent | eclass/linux-build: Use kernel_is instead of KV comparison (diff) | |
download | portage-bed73bb3090d6baf4e197ce6c93dd39679d30a69.tar.xz |
eclass/linux-build: Adjust make opt since upstream commit a436bb7b80638 "kbuild: use relative path more to include Makefile"
Diffstat (limited to 'eclass/linux-build.eclass')
-rw-r--r-- | eclass/linux-build.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass index 109a937e..a2e5dfd1 100644 --- a/eclass/linux-build.eclass +++ b/eclass/linux-build.eclass @@ -246,9 +246,8 @@ _linux-build_src_prepare_build() { linux-build_src_prepare() { bopt=( - -C "${BUILDDIR}" - -f "${SRCDIR}/Makefile" - KBUILD_SRC="${SRCDIR}" + -C "${SRCDIR}" + KBUILD_OUTPUT="${BUILDDIR}" KCONFIG_CONFIG="${BUILDDIR}/.config" KBUILD_BUILD_USER="${KBUILD_BUILD_USER:-${PORTAGE_USERNAME}}" |