From 92aa83c48db6fd79dbe05c4f7fb39a2598607850 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 4 Dec 2013 22:54:36 +0000 Subject: [PATCH] Fix the bad declaration on the lldb desactivation --- debian/changelog | 6 ++++++ debian/rules | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1b420dc7..b62fcfa8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +llvm-toolchain-3.4 (1:3.4~+rc2-3) UNRELEASED; urgency=low + + * Fix the bad declaration on the lldb desactivation + + -- Sylvestre Ledru Wed, 04 Dec 2013 23:53:49 +0100 + llvm-toolchain-3.4 (1:3.4~+rc2-2) unstable; urgency=low * Add the Ocaml ABI dependency (Closes: #731344) diff --git a/debian/rules b/debian/rules index 053c08ff..cfffaa73 100755 --- a/debian/rules +++ b/debian/rules @@ -107,7 +107,7 @@ LLDB_ENABLE=yes LLDB_DISABLE_ARCHS := hurd-i386 mips mipsel ia64 # hurd has threading issues # mips* fails with "undefined references to `__atomic_load_8'" -ifneq (,$(findstring $(DEB_HOST_ARCH),$(LLDB_DISABLE_ARCHS))) +ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH))) # Disable LLDB for this arch. LLDB_ENABLE=no endif