From c27a5a490ede35a42804b042745f26852e0b7b30 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 2 Apr 2019 11:57:49 +0200 Subject: [PATCH] Fix the FTBFS on mips (introduced by my previous change) --- debian/changelog | 6 ++++++ debian/rules | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 634b71f2..f5af3508 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +llvm-toolchain-8 (1:8-3) unstable; urgency=medium + + * Fix the FTBFS on mips (introduced by my previous change) + + -- Sylvestre Ledru Tue, 02 Apr 2019 11:57:08 +0200 + llvm-toolchain-8 (1:8-2) unstable; urgency=medium * Fix the search path on mips64el (which is causing the stage2 diff --git a/debian/rules b/debian/rules index 20e4b411..909eb431 100755 --- a/debian/rules +++ b/debian/rules @@ -96,7 +96,7 @@ ifneq (,$(findstring $(DEB_HOST_ARCH),armhf)) CMAKE_EXTRA += -DLLVM_HOST_TRIPLE=armv7l-unknown-linux-gnueabihf endif -ifneq (,$(findstring $(DEB_HOST_ARCH),mips64el)) +ifneq (,$(filter $(DEB_HOST_ARCH),mips64el)) # avoid an issue with search path on mips64el # https://bugs.llvm.org/show_bug.cgi?id=41204 CMAKE_EXTRA += -DLLVM_HOST_TRIPLE=mips64el-linux-gnuabi64