Your message dated Sat, 01 Nov 2025 11:28:24 +0000
with message-id <[email protected]>
and subject line Bug#1119580: fixed in survivor 1.0.7-5
has caused the Debian Bug report #1119580,
regarding survivor: please build using the default build flags
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1119580: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1119580
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: survivor
Version: 1.0.7-4
User: [email protected]
Usertags: hardening-buildflags
survivor is not currently using the default build flags set by
dpkg-buildflags(1).
The default flags are chosen for multiple reasons including security,
performance, reproducibility, adherence to standards, and error handling.
Please make sure that survivor builds using the default build flags. blhc(1p)
and hardening-check(1) can be used to confirm that the issue is fixed.
In the general case, packages honoring CFLAGS, LDFLAGS, and other
similar environment variables get the default build flags for free
without the need for any work on the maintainer side. In the case of
survivor, the flags are either ignored or overridden.
The most common reasons for this are:
Hand-written Makefiles
----------------------
Some upstream Makefiles either override the values of variables such as
CFLAGS and similar or do not use them at all. See:
https://wiki.debian.org/HardeningWalkthrough#Handwritten_Makefiles
Misconfigured build systems
---------------------------
If the upstream code uses autotools, CMake, or other popular build
systems, it usually requires no further modifications. If might however
be that some variables are hardcoded in some way.
In this CMake snippet, the value of CXXFLAGS is overwritten with "-O2":
set(CMAKE_CXX_FLAGS "-O2")
If the intention is to append to CXXFLAGS, one should use the following
instead:
set(CMAKE_CXX_FLAGS "-O2 ${CMAKE_CXX_FLAGS}")
See #655870 for a similar autotools example.
Very old debhelper usage
------------------------
Packages not using dh(1), or those using a debhelper compatibility level
less than 9, need to manually include /usr/share/dpkg/buildflags.mk in
order for the dpkg-buildflags variables to be set:
https://wiki.debian.org/Hardening#dpkg-buildflags
Flags hardcoded in debian/rules (either voluntarily or not)
-----------------------------------------------------------
Some packages voluntarily hardcode the values of CFLAGS and friends in
debian/rules, ignoring the defaults set by dpkg-buildflags(1).
Others attempt to append to the variables, but end up accidentally
overriding the defaults:
#!/usr/bin/make -f
export CFLAGS += -pipe -fPIC -Wall
%:
dh $@
Debhelper only sets CFLAGS if it is not set yet. In the example above,
when dh is invoked the value of CFLAGS is "-pipe -fPIC -Wall", hence the
hardened defaults are not used. The right way to append to CFLAGS is
using DEB_CFLAGS_MAINT_APPEND instead, as documented in
dpkg-buildflags(1).
For a detailed analysis of this issue, see:
https://people.debian.org/~ema/nocflags_paper.pdf (eprint: hal-05334704)
--- End Message ---
--- Begin Message ---
Source: survivor
Source-Version: 1.0.7-5
Done: Nilesh Patra <[email protected]>
We believe that the bug you reported is fixed in the latest version of
survivor, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nilesh Patra <[email protected]> (supplier of updated survivor package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Sat, 01 Nov 2025 14:47:32 +0530
Source: survivor
Architecture: source
Version: 1.0.7-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team
<[email protected]>
Changed-By: Nilesh Patra <[email protected]>
Closes: 1119580
Changes:
survivor (1.0.7-5) unstable; urgency=medium
.
* Team Upload.
* Add patch to compile with default compilation flags (Closes: #1119580)
* Drop Redundant "Rules-Requires-Root: no"
* Bump Standards-Version to 4.7.2 (no changes needed)
* Drop myself from uploaders
Checksums-Sha1:
f5c9bfb27c1eeda91a5892205a9c1c21b55a6c11 1361 survivor_1.0.7-5.dsc
12021a3790766b855955d54720d1540178f71764 4984 survivor_1.0.7-5.debian.tar.xz
c9d12c53867679875f59f86d6dcb1fcc5e9be922 5025 survivor_1.0.7-5_amd64.buildinfo
Checksums-Sha256:
390f09065848cd75639fa41050cb0f94ba55103db520006a84b2b8c41c206be4 1361
survivor_1.0.7-5.dsc
d4099b16a96baf0a3e9a313f51254fe961d92e9f57bc394e0213a9eb1e0b3845 4984
survivor_1.0.7-5.debian.tar.xz
fb1f7b57d8b3e34c337ee5f19caa5a1d5ee39be367ebc991d3473220e4a8f654 5025
survivor_1.0.7-5_amd64.buildinfo
Files:
8b0a1b07fab51aa19910f68ec61d5509 1361 science optional survivor_1.0.7-5.dsc
9ae08658c201ce34b905ada5075ef847 4984 science optional
survivor_1.0.7-5.debian.tar.xz
36a251261ef6fab643888c57f10aa8d2 5025 science optional
survivor_1.0.7-5_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iIgEARYKADAWIQSglbZu4JAkvuai8HIqJ5BL1yQ+2gUCaQXRQRIcbmlsZXNoQGRl
Ymlhbi5vcmcACgkQKieQS9ckPtpehgEAps5Sw4SJ21d7FVwgYLFKnR4C0tmOfsTv
bgWHHMIlNEsA/iOgSjAgZHh0KZBKmNL4WODdmlYhc7MEfDwl+C2evCkC
=ALCL
-----END PGP SIGNATURE-----
pgpn8mW86H1hf.pgp
Description: PGP signature
--- End Message ---