blob: cf940f55118cffb44f8b328cf09c396b5f31c127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
%:
dh $@ --with translations
override_dh_install:
dh_install --fail-missing
|