Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add -latomic to LDFLAGS on some architectures to fix FTFBS.
· 48c34e39
Bas Couwenberg
authored
Oct 18, 2019
48c34e39
Set distribution to experimental.
· f2e78a3a
Bas Couwenberg
authored
Oct 18, 2019
f2e78a3a
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
f2e78a3a
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.
...
...
debian/rules
View file @
f2e78a3a
...
...
@@ -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
...
...