This is an automated email from the git hooks/post-receive script. smcv pushed a commit to branch master in repository iortcw.
commit f88ec83be374366086b0c8b03b1e61ea54eba438 Author: Simon McVittie <[email protected]> Date: Sat Nov 21 23:11:43 2015 +0000 enable the new ARMv7 JIT on armhf, forcibly disable it elsewhere (avoiding uname) --- debian/changelog | 2 ++ debian/rules | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 40f9cdb..6499ac3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ iortcw (1.42b+20151119+dfsg1-1) UNRELEASED; urgency=medium * New upstream snapshot - build-depend on Freetype which is now enabled by default upstream + - enable the new ARMv7 JIT on armhf, forcibly disable it elsewhere + (avoiding uname) * debian/rules: maintainer-get-orig-source: put the tarball in ../build-area diff --git a/debian/rules b/debian/rules index bd95f29..e35ee58 100755 --- a/debian/rules +++ b/debian/rules @@ -40,6 +40,12 @@ mp_options := \ BD=$(CURDIR)/debian/build/mp \ $(NULL) +ifeq ($(DEB_HOST_ARCH),armhf) +options += ARM_VER_CHECK=armv7l +else +options += ARM_VER_CHECK=something_else +endif + override_dh_auto_build: install -d debian/build/mp debian/build/sp make -C SP -- $(options) $(sp_options) $(TARGET) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

