diff options
author | 2014-04-21 00:08:15 +0000 | |
---|---|---|
committer | 2014-04-21 00:08:15 +0000 | |
commit | 10ec5bec6a896ed71747e0da1cc78f9f3b8c85ed (patch) | |
tree | 71e3ca24c21e00712a4e1f3c8cc3c805357c3c2e /eclass/kernel-2.eclass | |
parent | removing bad version (diff) | |
download | historical-10ec5bec6a896ed71747e0da1cc78f9f3b8c85ed.tar.gz historical-10ec5bec6a896ed71747e0da1cc78f9f3b8c85ed.tar.bz2 historical-10ec5bec6a896ed71747e0da1cc78f9f3b8c85ed.zip |
Update 3.15-rcX temporary fix. See bug #507656.
Diffstat (limited to 'eclass/kernel-2.eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index d30ed4b03187..de84e8f07e76 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.295 2014/04/14 20:21:42 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.296 2014/04/21 00:08:15 mpagano Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -1048,7 +1048,7 @@ unipatch() { # https://bugs.gentoo.org/show_bug.cgi?id=507656 # #################################################################### if [[ ${PN} == "git-sources" ]] ; then - if [[ ${i} == *"/patch-3.15-rc1.patch" ]] ; then + if [[ ${KV_MAJOR}${KV_PATCH} -ge 315 && ${RELEASETYPE} == -rc ]] ; then ebegin "Applying ${i/*\//} (-p1)" if [ $(patch -p1 --no-backup-if-mismatch -f < ${i} >> ${STDERR_T}) "$?" -eq 0 ]; then eend 0 |