diff options
author | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2012-11-14 10:16:06 -0500 |
---|---|---|
committer | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2012-11-14 10:16:06 -0500 |
commit | 17836e4ee83aeb4c602e1015f6a10165d0fcde86 (patch) | |
tree | ea728e9d8a111012ec2cbce758a169ddc2701940 /debian | |
parent | 79bc986e51e4e45a55d00d1667c10e3c12f55683 (diff) | |
download | ayatana-indicator-sound-17836e4ee83aeb4c602e1015f6a10165d0fcde86.tar.gz ayatana-indicator-sound-17836e4ee83aeb4c602e1015f6a10165d0fcde86.tar.bz2 ayatana-indicator-sound-17836e4ee83aeb4c602e1015f6a10165d0fcde86.zip |
* debian/rules:
- override dh_autoreconf to use autogen.sh for the reconfiguration process.
- add export DPKG_GENSYMBOLS_CHECK_LEVEL=4.
Diffstat (limited to 'debian')
-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 |