diff options
author | Daniel Drake <dsd@gentoo.org> | 2006-12-07 18:52:55 +0000 |
---|---|---|
committer | Daniel Drake <dsd@gentoo.org> | 2006-12-07 18:52:55 +0000 |
commit | bba72b7037d567f5d9147be6c6998c1e90c4b9d4 (patch) | |
tree | 0a9e72b7268b4a5b77a0453f1e699061a6bb598f /eclass/linux-info.eclass | |
parent | Removed single quoting from the KBUILD value to fix bug #156319. (diff) | |
download | historical-bba72b7037d567f5d9147be6c6998c1e90c4b9d4.tar.gz historical-bba72b7037d567f5d9147be6c6998c1e90c4b9d4.tar.bz2 historical-bba72b7037d567f5d9147be6c6998c1e90c4b9d4.zip |
set object output dir when checking kernel version
Diffstat (limited to 'eclass/linux-info.eclass')
-rw-r--r-- | eclass/linux-info.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass index d59fe2213a43..b48d310fa477 100644 --- a/eclass/linux-info.eclass +++ b/eclass/linux-info.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.49 2006/12/05 18:16:09 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.50 2006/12/07 18:52:55 dsd Exp $ # # Description: This eclass is used as a central eclass for accessing kernel # related information for sources already installed. @@ -120,7 +120,7 @@ local ERROR workingdir basefname basedname myARCH="${ARCH}" cd "${basedname}" echo -e "e:\\n\\t@echo \$(${1})\\ninclude ${basefname}" | \ - make ${BUILD_FIXES} -s -f - 2>/dev/null + make M="${S}" ${BUILD_FIXES} -s -f - 2>/dev/null cd "${workingdir}" ARCH=${myARCH} |