We already strip binaries as part of the build task, no need to do it again (and risk invalidating signatures) when repackaging. Differential Revision: https://phabricator.services.mozilla.com/D279661
17 lines
288 B
Makefile
17 lines
288 B
Makefile
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_strip_nondeterminism:
|
|
dh_strip_nondeterminism -Xxpi
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
ifeq ($(shell dpkg-parsechangelog -S Source), firefox-esr)
|
|
install -m 0755 debian/firefox.sh debian/firefox-esr/usr/bin/firefox
|
|
endif
|
|
|
|
override_dh_strip:
|
|
:
|