diff options
| author | Michael Biebl <biebl@debian.org> | 2014-04-12 12:48:21 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2014-04-12 13:01:27 +0200 |
| commit | 9fbe2ddd07ef99c226a8ff16e2b5025cecd3fb76 (patch) | |
| tree | d3b72b853dbd2a6671c950cf574923e3d50e9194 /debian/rules | |
| parent | a6efb2a793f723d0e7bd56c8c64dd1635d484442 (diff) | |
Use dh-autoreconf to update the build system
Override dh_autoreconf since we need to run gtkdocize.
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 66297efc..4540c587 100755 --- a/debian/rules +++ b/debian/rules @@ -3,7 +3,15 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) %: - dh $@ --with gir,systemd,autotools_dev + dh $@ --with gir,systemd,autoreconf + +autoreconf: + gtkdocize --copy + autopoint --force + AUTOPOINT='intltoolize --automake --copy' autoreconf --verbose --force --install + +override_dh_autoreconf: + dh_autoreconf debian/rules -- autoreconf override_dh_auto_configure: dh_auto_configure -- \ |