diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-06-17 11:51:37 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-06-17 11:51:37 +0000 |
commit | 8f1d7414538fd4ae43eda3f38a352cbec051d84d (patch) | |
tree | 5bc5c5212f35e817a1d978097f1435c147c6147c /eclass | |
parent | old (diff) | |
download | gentoo-2-8f1d7414538fd4ae43eda3f38a352cbec051d84d.tar.gz gentoo-2-8f1d7414538fd4ae43eda3f38a352cbec051d84d.tar.bz2 gentoo-2-8f1d7414538fd4ae43eda3f38a352cbec051d84d.zip |
For the moment just disable the debug use-flag, as it fails to build
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozconfig-3.eclass | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/eclass/mozconfig-3.eclass b/eclass/mozconfig-3.eclass index c30a094a21ce..45c565e805b4 100644 --- a/eclass/mozconfig-3.eclass +++ b/eclass/mozconfig-3.eclass @@ -1,12 +1,12 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.2 2008/05/18 14:39:35 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.3 2008/06/17 11:51:37 armin76 Exp $ # # mozconfig.eclass: the new mozilla.eclass inherit multilib flag-o-matic mozcoreconf-2 -IUSE="debug gnome ipv6 dbus startup-notification" +IUSE="gnome ipv6 dbus startup-notification" RDEPEND="x11-libs/libXrender x11-libs/libXt @@ -50,24 +50,24 @@ mozconfig_config() { # is required for it to build mozconfig_annotate gentoo --disable-freetype2 - if use debug; then - mozconfig_annotate +debug \ - --enable-debug \ - --enable-tests \ - --disable-reorder \ - --enable-debugger-info-modules=ALL_MODULES - else - mozconfig_annotate -debug \ - --disable-debug \ - --disable-tests \ - --enable-reorder \ +# if use debug; then +# mozconfig_annotate +debug \ +# --enable-debug \ +# --enable-tests \ +# --disable-reorder \ +# --enable-debugger-info-modules=ALL_MODULES +# else + mozconfig_annotate -debug \ + --disable-debug \ + --disable-tests \ + --enable-reorder - # Currently --enable-elf-dynstr-gc only works for x86 and ppc, - # thanks to Jason Wever <weeve@gentoo.org> for the fix. - if use x86 || use ppc && [[ ${enable_optimize} != -O0 ]]; then - mozconfig_annotate "${ARCH} optimized build" --enable-elf-dynstr-gc - fi + # Currently --enable-elf-dynstr-gc only works for x86 and ppc, + # thanks to Jason Wever <weeve@gentoo.org> for the fix. + if use x86 || use ppc && [[ ${enable_optimize} != -O0 ]]; then + mozconfig_annotate "${ARCH} optimized build" --enable-elf-dynstr-gc fi +# fi if ! use gnome; then mozconfig_annotate -gnome --disable-gnomevfs |