Author: pere Date: 2014-10-05 06:20:38 +0000 (Sun, 05 Oct 2014) New Revision: 15257
Modified: software/ui/configure.ac software/ui/debian/changelog software/ui/debian/rules Log: Change default build rules to not print compiler flags, to make it easier to spot warnings. Adjust debian/rules to reenable them when building the debian package, for the automatic build check to work. Modified: software/ui/configure.ac =================================================================== --- software/ui/configure.ac 2014-10-05 06:05:41 UTC (rev 15256) +++ software/ui/configure.ac 2014-10-05 06:20:38 UTC (rev 15257) @@ -3,6 +3,7 @@ AC_CONFIG_SRCDIR([configure.ac]) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([foreign]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) dnl To use subdirs AC_PROG_MAKE_SET Modified: software/ui/debian/changelog =================================================================== --- software/ui/debian/changelog 2014-10-05 06:05:41 UTC (rev 15256) +++ software/ui/debian/changelog 2014-10-05 06:20:38 UTC (rev 15257) @@ -1,6 +1,9 @@ -goplay (0.8+nmu1) UNRELEASED; urgency=medium +goplay (0.9) UNRELEASED; urgency=medium * Update Standards-Version from 3.9.4 to 3.9.6. + * Change default build rules to not print compiler flags, to make it + easier to spot warnings. Adjust debian/rules to reenable them when + building the debian package, for the automatic build check to work. -- Petter Reinholdtsen <[email protected]> Sun, 05 Oct 2014 06:05:12 +0000 Modified: software/ui/debian/rules =================================================================== --- software/ui/debian/rules 2014-10-05 06:05:41 UTC (rev 15256) +++ software/ui/debian/rules 2014-10-05 06:20:38 UTC (rev 15257) @@ -10,6 +10,9 @@ %: dh $@ --with autoreconf +override_dh_auto_configure: + dh_auto_configure -- --disable-silent-rules + override_dh_auto_build: convert data/icons/Icon32.png debian/goplay.xpm dh_auto_build _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

