diff options
author | John J. Ellis <jje@gentoo.org> | 2003-07-04 07:49:41 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-07-04 07:49:41 +0000 |
commit | 781ce10c622abd7766521699b27da5980f5b65f7 (patch) | |
tree | c5568768a84c72d7d92bc13b9adfb45befa6cd0b /media-plugins/rmxmms/rmxmms-0.5.1.ebuild | |
parent | Version bump (diff) | |
download | historical-781ce10c622abd7766521699b27da5980f5b65f7.tar.gz historical-781ce10c622abd7766521699b27da5980f5b65f7.tar.bz2 historical-781ce10c622abd7766521699b27da5980f5b65f7.zip |
Fixed check for gcc3. Closes #23894.
Diffstat (limited to 'media-plugins/rmxmms/rmxmms-0.5.1.ebuild')
-rw-r--r-- | media-plugins/rmxmms/rmxmms-0.5.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-plugins/rmxmms/rmxmms-0.5.1.ebuild b/media-plugins/rmxmms/rmxmms-0.5.1.ebuild index cca3c6bcf12f..97714778aa75 100644 --- a/media-plugins/rmxmms/rmxmms-0.5.1.ebuild +++ b/media-plugins/rmxmms/rmxmms-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/rmxmms/rmxmms-0.5.1.ebuild,v 1.5 2003/03/30 20:51:40 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/rmxmms/rmxmms-0.5.1.ebuild,v 1.6 2003/07/04 07:49:34 jje Exp $ IUSE="" @@ -21,7 +21,7 @@ DEPEND="media-sound/xmms media-video/realplayer" pkg_setup() { - if [ `gcc-major-ver` = 3 ]; then + if [ "`gcc-major-version`" -eq "3" ]; then eerror "This plugin will not work when compiled with gcc-3.x" eerror "Either install and select a gcc-2.95.x compiler with" eerror "gcc-config, or give up." |