This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch master in repository wine.
commit 4f848380e176f0cba685cfcd9651b8ee7b811882 Author: Jens Reyer <[email protected]> Date: Sun Jun 5 15:41:12 2016 +0200 Don't error out on build warnings. In maintainer mode Wine is built with -Werror, but this fails. # Conflicts: # debian/changelog --- debian/changelog | 1 + debian/rules | 3 +++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4cc1343..8b881e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ wine-development (1.9.11-2) UNRELEASED; urgency=medium already fixed fonts-wine is used. - Build Wine in maintainer mode. Note: added alternative build-dependency on fontforge. + - Don't error out on build warnings. -- Jens Reyer <[email protected]> Sun, 05 Jun 2016 15:24:30 +0200 diff --git a/debian/rules b/debian/rules index 43ca888..2e5192b 100755 --- a/debian/rules +++ b/debian/rules @@ -55,6 +55,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
