diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-12-05 18:16:09 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-12-05 18:16:09 +0000 |
commit | 860b6b3fe01be98e65648e97417fe30f675b77fb (patch) | |
tree | ecec6ddf4f6c4b323659d21cebf9e910316816c7 /eclass | |
parent | Removed sed-4 from *DEPEND. (diff) | |
download | gentoo-2-860b6b3fe01be98e65648e97417fe30f675b77fb.tar.gz gentoo-2-860b6b3fe01be98e65648e97417fe30f675b77fb.tar.bz2 gentoo-2-860b6b3fe01be98e65648e97417fe30f675b77fb.zip |
Fix KV_OUT detection
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-info.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass index 9640a2aad7b5..d59fe2213a43 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.48 2006/09/07 11:37:41 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-info.eclass,v 1.49 2006/12/05 18:16:09 genstef Exp $ # # Description: This eclass is used as a central eclass for accessing kernel # related information for sources already installed. @@ -280,8 +280,8 @@ get_version() { # but before we do this, we need to find if we use a different object directory. # This *WILL* break if the user is using localversions, but we assume it was # caught before this if they are. - [ "${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.${KV_EXTRA}" == "$(uname -r)" ] && \ - OUTPUT_DIR="${OUTPUT_DIR:-/lib/modules/${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.${KV_EXTRA}/build}" + [ "${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${KV_EXTRA}" == "$(uname -r)" ] && \ + OUTPUT_DIR="${OUTPUT_DIR:-/lib/modules/${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${KV_EXTRA}/build}" [ -h "${OUTPUT_DIR}" ] && KV_OUT_DIR="$(readlink -f ${OUTPUT_DIR})" [ -d "${OUTPUT_DIR}" ] && KV_OUT_DIR="${OUTPUT_DIR}" |