diff options
author | Jeffrey Gardner <je_fro@gentoo.org> | 2008-10-19 08:08:19 +0000 |
---|---|---|
committer | Jeffrey Gardner <je_fro@gentoo.org> | 2008-10-19 08:08:19 +0000 |
commit | 07cb6bff9e5292b1a3ec4ab8123fa2af8363d39a (patch) | |
tree | 1046cd79cd3c52d4b5e6bd1e8251b2b0ee349403 /x11-drivers | |
parent | Add fix from upstream for cutting at end of file #240330 by amadeus.bit. (diff) | |
download | gentoo-2-07cb6bff9e5292b1a3ec4ab8123fa2af8363d39a.tar.gz gentoo-2-07cb6bff9e5292b1a3ec4ab8123fa2af8363d39a.tar.bz2 gentoo-2-07cb6bff9e5292b1a3ec4ab8123fa2af8363d39a.zip |
Check for UNUSED_SYMBOLS
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/ati-drivers/ChangeLog | 5 | ||||
-rw-r--r-- | x11-drivers/ati-drivers/ati-drivers-8.542.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/x11-drivers/ati-drivers/ChangeLog b/x11-drivers/ati-drivers/ChangeLog index 63f1b7f784e6..16b51e140642 100644 --- a/x11-drivers/ati-drivers/ChangeLog +++ b/x11-drivers/ati-drivers/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-drivers/ati-drivers # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.129 2008/10/17 15:24:47 je_fro Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.130 2008/10/19 08:08:19 je_fro Exp $ + + 19 Oct 2008; Jeff Gardner <je_fro@gentoo.org> ChangeLog: + Fix to check for UNUSED_SYMBOLS. 17 Oct 2008; Jeff Gardner <je_fro@gentoo.org> +files/8.542/ati-drivers-2.6.27.patch, ati-drivers-8.542.ebuild: diff --git a/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild b/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild index e73fbcc01ee3..c99264323a4e 100644 --- a/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild +++ b/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild,v 1.3 2008/10/17 15:24:47 je_fro Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-8.542.ebuild,v 1.4 2008/10/19 08:08:19 je_fro Exp $ IUSE="acpi debug" @@ -78,7 +78,7 @@ pkg_setup() { die "${P} is not compatible with RCU Preemption (bug #223281), please disable it" fi - if ! linux_chkconfig_present UNUSED_SYMBOLS; then + if kernel_is ge 2 6 26 && ! linux_chkconfig_present UNUSED_SYMBOLS; then ewarn "You have to Enable unused/obsolete exported symbols in Kernel hacking section of kernel config for fglrx to load" fi |