This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch stretch in repository wine.
commit 53bbaefe0eb886afec43ec87207fde8fd0ad0a23 Author: Jens Reyer <[email protected]> Date: Fri Apr 8 16:55:55 2016 +0200 Don't error out on build warnings. In maintainer mode Wine is built with -Werror, but this fails. --- debian/changelog | 1 + debian/rules | 3 +++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index f9a3859..68ede95 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,7 @@ wine (1.8.1-3) UNRELEASED; urgency=medium (closes: #814844). * Install wine's TrueType fonts (closes: #818925). * Build wine in maintainer mode. + * Don't error out on build warnings. -- Jens Reyer <[email protected]> Sun, 13 Mar 2016 02:40:12 +0100 diff --git a/debian/rules b/debian/rules index 2da8808..9be0f25 100755 --- a/debian/rules +++ b/debian/rules @@ -57,6 +57,9 @@ export DEB_CFLAGS_MAINT_APPEND+=-march=armv5t export DEB_LDFLAGS_MAINT_APPEND+=-march=armv5t endif +# override maintainer mode config +export DEB_CFLAGS_MAINT_APPEND+=-Wno-error + # additional files to generate INSTALLS=$(shell ls debian/*VERSION* | sed s/VERSION/$(VERSION)/) \ debian/bug-control \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
