[Pkg-mono-svn-commits] [mono] 02/03: Use DEB_HOST_ARCH not DEB_BUILD_ARCH. Apparently.

Jo Shields directhex at moszumanska.debian.org
Sat Nov 12 23:43:19 UTC 2016


This is an automated email from the git hooks/post-receive script.

directhex pushed a commit to annotated tag debian/4.6.1.3+dfsg-8
in repository mono.

commit faceb4d4537bbbb0e3215ec985b1dc022f85acd0
Author: Jo Shields <directhex at apebox.org>
Date:   Sat Nov 12 21:33:07 2016 +0000

    Use DEB_HOST_ARCH not DEB_BUILD_ARCH. Apparently.
---
 debian/rules | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/debian/rules b/debian/rules
index fef4d33..b0ae83a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -37,31 +37,31 @@ ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd)
         CONF_FLAGS += --enable-minimal=aot
 endif
 
-ifeq ($(DEB_BUILD_ARCH), armel)
+ifeq ($(DEB_HOST_ARCH), armel)
 	CONF_FLAGS += --with-fpu=NONE --with-tls=pthread
 endif
 
-ifeq ($(DEB_BUILD_ARCH), armhf)
+ifeq ($(DEB_HOST_ARCH), armhf)
 	CONF_FLAGS += --with-tls=pthread
 endif
 
-ifeq ($(DEB_BUILD_ARCH), mipsel)
+ifeq ($(DEB_HOST_ARCH), mipsel)
 	CONF_FLAGS += --with-tls=pthread
 endif
 
-ifeq ($(DEB_BUILD_ARCH), powerpc)
+ifeq ($(DEB_HOST_ARCH), powerpc)
 	CONF_FLAGS += --with-tls=pthread
 endif
 
-ifeq ($(DEB_BUILD_ARCH), ppc64)
+ifeq ($(DEB_HOST_ARCH), ppc64)
 	CONF_FLAGS += --with-tls=pthread
 endif
 
-ifeq ($(DEB_BUILD_ARCH), ppc64el)
+ifeq ($(DEB_HOST_ARCH), ppc64el)
 	CONF_FLAGS += --with-tls=pthread
 endif
 
-ifneq (,$(findstring $(DEB_BUILD_ARCH),$(DEB_MONO_SGEN_ARCHS)))
+ifneq (,$(findstring $(DEB_HOST_ARCH),$(DEB_MONO_SGEN_ARCHS)))
 	CONF_FLAGS += --with-sgen=yes
 else
 	CONF_FLAGS += --with-sgen=no
@@ -78,7 +78,7 @@ else
 	MONO_SGEN_TEST = cd mono/tests && MONO_ENV_OPTIONS=--gc=sgen $(TIMEOUT) make check; $(KILL_MONO)
 endif
 
-ifeq ($(DEB_BUILD_ARCH), arm64)
+ifeq ($(DEB_HOST_ARCH), arm64)
 	MONO_BOEHM_TEST = true
 	CONF_FLAGS += --disable-boehm
 	SKIP_LIBGC = true

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mono/packages/mono.git



More information about the Pkg-mono-svn-commits mailing list