diff options
author | Balint Reczey <balint@balintreczey.hu> | 2016-01-11 01:06:42 +0100 |
---|---|---|
committer | Balint Reczey <balint@balintreczey.hu> | 2016-01-11 12:28:26 +0000 |
commit | 919b445a758869268d0bf0b0d094e8a21928a0e6 (patch) | |
tree | 3b7700ffd301d08fea6579682f8f21dd7c58aadd | |
parent | ebdaace0025749dd68a1cef7d0fd83b596861edf (diff) | |
download | wireshark-919b445a758869268d0bf0b0d094e8a21928a0e6.tar.gz wireshark-919b445a758869268d0bf0b0d094e8a21928a0e6.tar.bz2 wireshark-919b445a758869268d0bf0b0d094e8a21928a0e6.zip |
debian: Fix setting -Wl,-Bsymbolic on Wheezy only
Bug: 11992
Change-Id: Iec525a43e8f1703247213d1d6a139dcabc18fb37
Reviewed-on: https://code.wireshark.org/review/13178
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Balint Reczey <balint@balintreczey.hu>
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 37403cb700..080f576363 100755 --- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ endif export DH_OPTIONS export DEB_BUILD_MAINT_OPTIONS = hardening=+all -ifeq (,$(filter $(distrelease),wheezy)) +ifneq (,$(filter $(distrelease),wheezy)) export DEB_LDFLAGS_MAINT_APPEND = -Wl,-Bsymbolic endif |