diff options
| author | Michael Biebl <biebl@debian.org> | 2022-08-17 10:13:29 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-08-17 11:35:35 +0200 |
| commit | 2e2b3e870532229f903adca0a9a37086ce46459a (patch) | |
| tree | 0c52328a021af94f0858f095a6948ed8760f4475 /debian/rules | |
| parent | 3eda4c46c8d4cf35f55ca6bf1861fe1b33ab380b (diff) | |
Simplify dh_autoreconf override by calling upstream provided autogen.sh
This ensures the correct sequence of commands is run. In this specific case we were still using intltoolize when upstream dropped its usage in favour of gettext a while ago.
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/debian/rules b/debian/rules index 9b61ddcb..52c938d3 100755 --- a/debian/rules +++ b/debian/rules @@ -11,13 +11,8 @@ PPPD_PLUGIN_DIR := $(shell dh_ppp --plugin-dir) %: dh $@ --with ppp -autoreconf: - gtkdocize --copy - autopoint --force - AUTOPOINT='intltoolize --automake --copy' autoreconf --verbose --force --install - override_dh_autoreconf: - dh_autoreconf debian/rules -- autoreconf + NOCONFIGURE=true dh_autoreconf ./autogen.sh override_dh_auto_configure: dh_auto_configure -- \ |