Author: yavor-guest Date: 2010-06-22 08:44:14 +0000 (Tue, 22 Jun 2010) New Revision: 4899
Modified: trunk/packages/adun.app/trunk/debian/changelog trunk/packages/adun.app/trunk/debian/rules Log: debian/rules (mipsen-flags): New variable, conditionally define only when building on mips/mipsel as a workaround for gcc-4.4 bug #519006. (build-stamp): Use it. Modified: trunk/packages/adun.app/trunk/debian/changelog =================================================================== --- trunk/packages/adun.app/trunk/debian/changelog 2010-06-22 08:38:29 UTC (rev 4898) +++ trunk/packages/adun.app/trunk/debian/changelog 2010-06-22 08:44:14 UTC (rev 4899) @@ -1,7 +1,15 @@ +adun.app (0.81-4) UNRELEASED; urgency=low + + * debian/rules (mipsen-flags): New variable, conditionally define only + when building on mips/mipsel as a workaround for gcc-4.4 bug #519006. + (build-stamp): Use it. + + -- Yavor Doganov <[email protected]> Tue, 22 Jun 2010 11:40:17 +0300 + adun.app (0.81-3) UNRELEASED; urgency=low [ Charles Plessy ] - * Documented informations in ‘debian/upstream-metadata.yaml’. + * Documented information in ‘debian/upstream-metadata.yaml’. [ Yavor Doganov ] * debian/rules: Export GNUSTEP_MAKEFILES and avoid gs_make. All uses Modified: trunk/packages/adun.app/trunk/debian/rules =================================================================== --- trunk/packages/adun.app/trunk/debian/rules 2010-06-22 08:38:29 UTC (rev 4898) +++ trunk/packages/adun.app/trunk/debian/rules 2010-06-22 08:44:14 UTC (rev 4899) @@ -17,6 +17,11 @@ optim := debug=yes endif +# Workaround for gcc-4.4 bug 519006. +ifneq (,$(findstring mips,$(DEB_BUILD_ARCH))) +mipsen-flags := ADDITIONAL_OBJCFLAGS=-g0 ADDITIONAL_CFLAGS=-g0 +endif + build: patch build-stamp build-stamp: @@ -33,7 +38,7 @@ # even if no -j option is used. GNUSTEP_MAKE_PARALLEL_BUILDING=no # prevents messing the MAKELEVEL again. MAKELEVEL=0 $(MAKE) GNUSTEP_MAKE_PARALLEL_BUILDING=no $(optim) \ - messages=yes LDFLAGS="$(LDFLAGS)" + messages=yes LDFLAGS="$(LDFLAGS)" $(mipsen-flags) convert UL/Resources/icon.tiff -resize 32x32 adun.xpm touch $@ _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
