summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Bicha <jbicha@ubuntu.com>2018-12-27 20:01:13 -0500
committerJeremy Bicha <jbicha@ubuntu.com>2018-12-27 20:01:13 -0500
commit1e6d73574f9f38a62464966a492d34b783b4f30a (patch)
tree371b9b9ea7adc84eb32fc5d2f1c0e1612ee1d5bf
parentUpload to unstable (diff)
downloadzenity-1e6d73574f9f38a62464966a492d34b783b4f30a.tar.gz
zenity-1e6d73574f9f38a62464966a492d34b783b4f30a.tar.bz2
zenity-1e6d73574f9f38a62464966a492d34b783b4f30a.zip
Restore -Wl,-O1 to our LDFLAGS
-rwxr-xr-xdebian/rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index 52f0d21e..6904b1cb 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,-z,defs -Wl,--as-needed
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
%:
dh $@ --with gnome
bgstack15