Skip to content
Commits on Source (2)
icinga2 (2.11.1-2~exp1) experimental; urgency=medium
* Team upload.
* Add -latomic to LDFLAGS on some architectures to fix FTFBS.
-- Bas Couwenberg <sebastic@debian.org> Fri, 18 Oct 2019 16:32:56 +0200
icinga2 (2.11.1-1) unstable; urgency=medium
* Team upload.
......
......@@ -6,6 +6,7 @@
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
export CTEST_OUTPUT_ON_FAILURE=1
......@@ -14,6 +15,10 @@ ifneq (,$(findstring $(DEB_BUILD_ARCH),"armhf mips mipsel"))
UNITY_BUILD = -DICINGA2_UNITY_BUILD=Off
endif
ifneq (,$(filter $(DEB_HOST_ARCH),armel m68k mips mipsel powerpc powerpcspe sh4))
export DEB_LDFLAGS_MAINT_APPEND = -latomic
endif
%:
dh $@ --with systemd --with bash_completion --parallel
......