summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2020-10-08 10:56:57 +0100
committerSimon McVittie <smcv@debian.org>2020-10-08 10:56:57 +0100
commit9453744e2b1985769060137adbefaaafc3eaee1c (patch)
treefb852fde9058a4a9dea2dd80d9d5501103a687ca
parentSet Rules-Requires-Root to no (diff)
downloadzenity-9453744e2b1985769060137adbefaaafc3eaee1c.tar.gz
zenity-9453744e2b1985769060137adbefaaafc3eaee1c.tar.bz2
zenity-9453744e2b1985769060137adbefaaafc3eaee1c.zip
Remove -Wl,--as-needed linker flag
This is the default for the bullseye toolchain.
-rwxr-xr-xdebian/rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index 6904b1cb..93505cd8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
-export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
%:
dh $@ --with gnome
bgstack15