diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8f97f56..87fa6ba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,8 @@ dmidecode (3.5-2) UNRELEASED; urgency=medium - debian/patches/0155-use_read_file.patch - debian/patches/0160-HPE_OEM_Firmware_change.patch * Add debian/dmidecode.lintian-overrides for wrong groff-message. + * debian/rules: + - Remove ansi mode from override_dh_auto_build (Closes: #1041611). -- Jörg Frings-Fürst <debian@jff.email> Sat, 15 Jul 2023 13:41:27 +0200 diff --git a/debian/rules b/debian/rules index dd31875..a7e6173 100755 --- a/debian/rules +++ b/debian/rules @@ -14,7 +14,7 @@ endif dh ${@} override_dh_auto_build: - dh_auto_build -- CC=$(CC) CFLAGS="$(CFLAGS) $(CPPFLAGS) -Os -ansi" LDFLAGS="$(LDFLAGS)" + dh_auto_build -- CC=$(CC) CFLAGS="$(CFLAGS) $(CPPFLAGS) -Os" LDFLAGS="$(LDFLAGS)" override_dh_auto_install: dh_auto_install -- prefix=/usr |