From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RWIrS-0002xv-04 for garchives@archives.gentoo.org; Fri, 02 Dec 2011 02:28:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5801421C027; Fri, 2 Dec 2011 02:28:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 28F5921C027 for ; Fri, 2 Dec 2011 02:28:18 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8CA181B400A for ; Fri, 2 Dec 2011 02:28:17 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 628EF2004C; Fri, 2 Dec 2011 02:28:16 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: kernel-2.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: kernel-2.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20111202022816.628EF2004C@flycatcher.gentoo.org> Date: Fri, 2 Dec 2011 02:28:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 0bff994d-3362-472a-83b7-c4b8707ee398 X-Archives-Hash: bb4a7ed115f996b92d1cae483e2cdebd vapier 11/12/02 02:28:16 Modified: kernel-2.eclass Log: simplify default variable setup Revision Changes Path 1.267 eclass/kernel-2.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.ec= lass?rev=3D1.267&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.ec= lass?rev=3D1.267&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kernel-2.ec= lass?r1=3D1.266&r2=3D1.267 Index: kernel-2.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v retrieving revision 1.266 retrieving revision 1.267 diff -u -r1.266 -r1.267 --- kernel-2.eclass 2 Dec 2011 01:54:09 -0000 1.266 +++ kernel-2.eclass 2 Dec 2011 02:28:16 -0000 1.267 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.266 2011/1= 2/02 01:54:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.267 2011/1= 2/02 02:28:16 vapier Exp $ =20 # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -83,20 +83,18 @@ fi =20 HOMEPAGE=3D"http://www.kernel.org/ http://www.gentoo.org/ ${HOMEPAGE}" -[[ -z ${LICENSE} ]] && \ - LICENSE=3D"GPL-2" +: ${LICENSE:=3D"GPL-2"} =20 # This is the latest KV_PATCH of the deblob tool available from the # libre-sources upstream. If you bump this, you MUST regenerate the Mani= fests # for ALL kernel-2 consumer packages where deblob is available. -[[ -z ${DEBLOB_MAX_VERSION} ]] && DEBLOB_MAX_VERSION=3D38 +: ${DEBLOB_MAX_VERSION:=3D38} =20 # No need to run scanelf/strip on kernel sources/headers (bug #134453). RESTRICT=3D"binchecks strip" =20 # set LINUX_HOSTCFLAGS if not already set -[[ -z ${LINUX_HOSTCFLAGS} ]] && \ - LINUX_HOSTCFLAGS=3D"-Wall -Wstrict-prototypes -Os -fomit-frame-pointer = -I${S}/include" +: ${LINUX_HOSTCFLAGS:=3D"-Wall -Wstrict-prototypes -Os -fomit-frame-poin= ter -I${S}/include"} =20 # debugging functions #=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D