# HG changeset patch # User Dominique Corbex # Date 1362931364 -3600 # Node ID bb288d01b7cc5c00b006721c812cd48158f1868e # Parent 712bdfdeea103f79c36877ca4090ae54797c7af1 firefox: reducing log size diff -r 712bdfdeea10 -r bb288d01b7cc firefox/receipt --- a/firefox/receipt Sat Mar 09 18:18:19 2013 +0100 +++ b/firefox/receipt Sun Mar 10 17:02:44 2013 +0100 @@ -6,9 +6,8 @@ SHORT_DESC="User friendly, secure and fast web browser." MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.source.tar.bz2" -WEB_SITE="http://www.mozilla.org/" +WEB_SITE="http://www.mozilla.org/firefox" WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL" -CONFIG_FILES="/etc/firefox" TAGS="browser" DEPENDS="gtk+ sqlite dbus dbus-glib glib jpeg xorg-libX11 xorg-libXdamage \ @@ -36,7 +35,7 @@ cp -a $stuff/mozconfig $src # build firefox and create a firefox tarball - make -f client.mk && + make -f client.mk | egrep -v "c++|nsinstall|python" && make -C obj-firefox/browser/installer # install diff -r 712bdfdeea10 -r bb288d01b7cc firefox/stuff/mozconfig --- a/firefox/stuff/mozconfig Sat Mar 09 18:18:19 2013 +0100 +++ b/firefox/stuff/mozconfig Sun Mar 10 17:02:44 2013 +0100 @@ -22,12 +22,14 @@ mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-firefox # Specify arch option and level of optimization: -ac_add_options --enable-optimize="$CFLAGS" +ac_add_options --enable-optimize="$CFLAGS -Wno-unused-function \ +-Wno-unused-but-set-variable -Wno-unused-variable -Wno-variadic-macros" # If you have a multicore machine you can speed up the build by running # several jobs at once by uncommenting the following line and setting the # value to number of CPU cores: -mk_add_options MOZ_MAKE_FLAGS="-j$(grep processor /proc/cpuinfo | wc -l)" +mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS" + # Reduce the log size: ac_add_options --silent