summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoko <doko@6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>2014-07-31 07:59:03 +0000
committerdoko <doko@6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>2014-07-31 07:59:03 +0000
commit17dc74147076a971e807d14db9c666ad5346faab (patch)
tree3e58c1ab7a493a0c6acedf6180cf70132d28203f
parent631cb223358f0d51ab619a59e6bb55db1cdf9fd4 (diff)
downloadgcc-49-17dc74147076a971e807d14db9c666ad5346faab.tar.gz
* Build libphobos on armel and armhf. Closes: #755390.
git-svn-id: svn://svn.debian.org/svn/gcccvs/branches/sid/gcc-4.9@7541 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca
-rw-r--r--debian/changelog1
-rw-r--r--debian/rules.defs4
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 6cdef30..5269b3f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
gcc-4.9 (4.9.1-4) UNRELEASED; urgency=medium
* Update to SVN 20140728 (r213129) from the gcc-4_9-branch.
+ * Build libphobos on armel and armhf. Closes: #755390.
-- Matthias Klose <doko@debian.org> Mon, 28 Jul 2014 18:26:32 +0200
diff --git a/debian/rules.defs b/debian/rules.defs
index 2d6d27f..90dd83b 100644
--- a/debian/rules.defs
+++ b/debian/rules.defs
@@ -818,10 +818,10 @@ ifeq ($(with_d),yes)
mips mipsel mips64 mips64el mipsn32 mipsn32el \
powerpc powerpcspe ppc64 s390 s390x sh4 sparc sparc64
libphobos_no_systems := gnu kfreebsd-gnu
- ifneq (,$(findstring $(DEB_TARGET_ARCH_CPU),$(libphobos_no_cpus)))
+ ifneq (,$(filter $(DEB_TARGET_ARCH_CPU),$(libphobos_no_cpus)))
with_libphobos := disabled for cpu $(DEB_TARGET_ARCH_CPU)
endif
- ifneq (,$(findstring $(DEB_TARGET_GNU_SYSTEM),$(libphobos_no_systems)))
+ ifneq (,$(filter $(DEB_TARGET_GNU_SYSTEM),$(libphobos_no_systems)))
with_libphobos := disabled for system $(DEB_TARGET_GNU_SYSTEM)
endif