diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-06-25 10:02:10 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-06-25 10:02:10 -0500 |
commit | 6c63582cddf7f9aea296aef3bcfebe4bcf8c6fbe (patch) | |
tree | c88ffb11c500043be4cf48c33318678efe36d818 /debian/rules | |
parent | f6778e1cc3e3881225e967c94de4685c732755db (diff) | |
download | ayatana-indicator-datetime-6c63582cddf7f9aea296aef3bcfebe4bcf8c6fbe.tar.gz ayatana-indicator-datetime-6c63582cddf7f9aea296aef3bcfebe4bcf8c6fbe.tar.bz2 ayatana-indicator-datetime-6c63582cddf7f9aea296aef3bcfebe4bcf8c6fbe.zip |
make g++ 4.9 explicit
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index d2889aa..cf940f5 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,10 @@ #!/usr/bin/make -f +# Explicitly selecting a G{CC,++}-version here to avoid accidental +# ABI breaks introduced by toolchain updates. +export CC=$(DEB_HOST_GNU_TYPE)-gcc-4.9 +export CXX=$(DEB_HOST_GNU_TYPE)-g++-4.9 + LDFLAGS += -Wl,-z,defs -Wl,--as-needed %: |