summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJohn Mylchreest <johnm@gentoo.org>2006-03-03 21:54:52 +0000
committerJohn Mylchreest <johnm@gentoo.org>2006-03-03 21:54:52 +0000
commitee8fdb9b5f525db26dcd75255baad829e5850c15 (patch)
tree2a4649ebc17cecfe29690bcb82a03ae77be2395a /eclass
parentVersion bump from upstream (diff)
downloadhistorical-ee8fdb9b5f525db26dcd75255baad829e5850c15.tar.gz
historical-ee8fdb9b5f525db26dcd75255baad829e5850c15.tar.bz2
historical-ee8fdb9b5f525db26dcd75255baad829e5850c15.zip
Fixes bug #113261
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kernel-2.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 8d1dd1a64608..7ace30ddcb1e 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.161 2006/02/28 02:56:47 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.162 2006/03/03 21:54:52 johnm Exp $
# Description: kernel.eclass rewrite for a clean base regarding the 2.6
# series of kernel with back-compatibility for 2.4
@@ -333,9 +333,9 @@ unpack_2_6() {
# this file is required for other things to build properly, so we
# autogenerate it ... touch .config to keep version.h build from
# spitting out an annoying warning
- make -s mrproper ${xmakeopts} || die "make mrproper failed"
touch .config
make -s include/linux/version.h ${xmakeopts} || die "make include/linux/version.h failed"
+ make -s mrproper ${xmakeopts} || die "make mrproper failed"
rm -f .config
}