]> git.proxmox.com Git - rustc.git/commitdiff
Fix Makefile addition syntax
authorXimin Luo <infinity0@debian.org>
Wed, 5 May 2021 21:24:20 +0000 (22:24 +0100)
committerXimin Luo <infinity0@debian.org>
Wed, 5 May 2021 21:24:20 +0000 (22:24 +0100)
debian/changelog
debian/rules

index 4d9657b26437932294005bf568847ac37e28fd58..21bfacc360d7707e4de4a5affb3fe6e21ffcf731 100644 (file)
@@ -1,3 +1,9 @@
+rustc (1.52.0~beta.3+dfsg1-1~exp3) UNRELEASED; urgency=medium
+
+  * Fix Makefile addition syntax.
+
+ -- Ximin Luo <infinity0@debian.org>  Wed, 05 May 2021 22:24:06 +0100
+
 rustc (1.52.0~beta.3+dfsg1-1~exp2) experimental; urgency=medium
 
   * Install the rust-llvm-dwp symlink.
index 9b14fd10b0051d1e2000822cc9d8e0208f0ca188..423e4e44c943903ebe74d1f8929903b1dcd064d9 100755 (executable)
@@ -258,7 +258,7 @@ endif
 ifneq (,$(filter $(DEB_BUILD_ARCH), powerpcspe riscv64 sparc64 x32))
   FAILURES_ALLOWED = 180
 endif
-FAILURES_ALLOWED += 2 # FIXME: temp hack for 1.52.0~beta.3+dfsg1-1~exp2 to account for the fact that 1.51.0+dfsg1-1~exp3 did not install rust-llvm-dwp; remove in 1.52.0~beta.3+dfsg1-1~exp3 and 1.51.0+dfsg1-1
+FAILURES_ALLOWED := $(shell expr 2 + $(FAILURES_ALLOWED)) # FIXME: temp hack for 1.52.0~beta.3+dfsg1-1~exp2 to account for the fact that 1.51.0+dfsg1-1~exp3 did not install rust-llvm-dwp; remove in 1.52.0~beta.3+dfsg1-1~exp3 and 1.51.0+dfsg1-1
 FAILED_TESTS = grep "FAILED\|^command did not execute successfully" $(TEST_LOG) | grep -v '^test result: FAILED' | grep -v 'FAILED (allowed)'
 override_dh_auto_test-arch:
        # ensure that rustc_llvm is actually dynamically linked to libLLVM