diff options
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 7c89a6f..9256785 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ indicator-sound (12.10.2-0ubuntu1) UNRELEASED; urgency=low - add gnome-common to Build-Depends for use by dh_autoreconf. - update style for constency: use trailing commas at the end of dep lists. - Add Vcs-Bzr, Vcs-Browser fields with comment for uploaders. + * debian/rules: + - override dh_autoreconf to use autogen.sh for the reconfiguration process. + - add export DPKG_GENSYMBOLS_CHECK_LEVEL=4. -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Wed, 14 Nov 2012 10:01:19 -0500 diff --git a/debian/rules b/debian/rules index 400a07b..2ce3519 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,13 @@ #!/usr/bin/make -f +export DPKG_GENSYMBOLS_CHECK_LEVEL=4 %: dh $@ --with translations,autoreconf +override_dh_autoreconf: + NOCONFIGURE=1 dh_autoreconf ./autogen.sh + override_dh_install: find debian/indicator-sound/usr/lib -name *.la -delete find debian/indicator-sound/usr/lib -name *.a -delete |