diff options
author | 2008-06-26 18:08:46 +0000 | |
---|---|---|
committer | 2008-06-26 18:08:46 +0000 | |
commit | 9e026d48a74f19fa23024ff43e53d7abc5665567 (patch) | |
tree | c3b7f4af50f1ac52425532b24f2e73c23363b91c /eclass/mozcoreconf-2.eclass | |
parent | add libpng dep as reported in bug #229139 (diff) | |
download | gentoo-2-9e026d48a74f19fa23024ff43e53d7abc5665567.tar.gz gentoo-2-9e026d48a74f19fa23024ff43e53d7abc5665567.tar.bz2 gentoo-2-9e026d48a74f19fa23024ff43e53d7abc5665567.zip |
Typo
Diffstat (limited to 'eclass/mozcoreconf-2.eclass')
-rw-r--r-- | eclass/mozcoreconf-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozcoreconf-2.eclass b/eclass/mozcoreconf-2.eclass index 8da88be7d5fb..985525699895 100644 --- a/eclass/mozcoreconf-2.eclass +++ b/eclass/mozcoreconf-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.4 2008/06/26 16:45:57 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozcoreconf-2.eclass,v 1.5 2008/06/26 18:08:46 armin76 Exp $ # # mozcoreconf.eclass : core options for mozilla # inherit mozconfig-2 if you need USE flags @@ -80,7 +80,7 @@ mozconfig_init() { mozconfig_annotate "from CFLAGS" --enable-optimize=-O0 elif [[ ${ARCH} == hppa ]]; then mozconfig_annotate "more than -O0 causes segfaults on hppa" --enable-optimize=-O0 - elif [[ ${ARCH} == ppc ]] && ! has_version '>=sys-libs/glibc-2.8'; then + elif [[ ${ARCH} == ppc ]] && has_version '>=sys-libs/glibc-2.8'; then mozconfig_annotate "more than -O1 segfaults on ppc with glibc-2.8" --enable-optimize=-O1 elif is-flag -O1; then mozconfig_annotate "from CFLAGS" --enable-optimize=-O1 |