rules: Fix syntax on non-linux

Make does not want a tab before a $(info), see
https://buildd.debian.org/status/fetch.php?pkg=llvm-toolchain-19&arch=hurd-i386&ver=1%3A19.1.1-1&stamp=1727930867&raw=0
This commit is contained in:
Samuel Thibault 2024-10-03 20:04:08 +02:00
parent 1ebd80e92e
commit 60f68772c5
2 changed files with 3 additions and 2 deletions

3
debian/changelog vendored
View File

@ -1,4 +1,4 @@
llvm-toolchain-19 (1:19.1.1-2) unstable; urgency=medium llvm-toolchain-19 (1:19.1.1-2) UNRELEASED; urgency=medium
[ Samuel Thibault ] [ Samuel Thibault ]
* patches/hurd/hurd-f_type.diff: Fix hurd build against glibc ≥ 2.39. * patches/hurd/hurd-f_type.diff: Fix hurd build against glibc ≥ 2.39.
@ -6,6 +6,7 @@ llvm-toolchain-19 (1:19.1.1-2) unstable; urgency=medium
hurd-amd64 ; ship libomptarget. hurd-amd64 ; ship libomptarget.
* libomp5-X.Y.install.in: Ship libomptarget. * libomp5-X.Y.install.in: Ship libomptarget.
* libomp5-X.Y.symbols.in: Fix symbols on hurd-any. * libomp5-X.Y.symbols.in: Fix symbols on hurd-any.
* rules: Fix syntax on non-linux.
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 02 Oct 2024 10:29:32 +0200 -- Sylvestre Ledru <sylvestre@debian.org> Wed, 02 Oct 2024 10:29:32 +0200

2
debian/rules vendored
View File

@ -590,7 +590,7 @@ endif
LIBFUZZER_ENABLE=yes LIBFUZZER_ENABLE=yes
ifeq (,$(filter $(DEB_HOST_ARCH_OS),linux)) ifeq (,$(filter $(DEB_HOST_ARCH_OS),linux))
LIBFUZZER_ENABLE=no LIBFUZZER_ENABLE=no
$(info Libfuzzer disabled for $(DEB_HOST_ARCH_OS)) $(info Libfuzzer disabled for $(DEB_HOST_ARCH_OS))
endif endif
ifneq (,$(filter $(DEB_HOST_ARCH), mipsel)) ifneq (,$(filter $(DEB_HOST_ARCH), mipsel))