Package: src:hello Severity: normal Tags: patch Version: 2.9-1 Hi,
hello uses autotools but the packaging doesn't use dh-autoreconf. I've attached a patch that adds dh-autoreconf and then needed additional build dependencies. The patch that modifies config.guess and config.sub is probably also obsolete if dh-autoreconf is used. Regards, Lukas
--- a/hello-2.9/debian/control +++ b/hello-2.9/debian/control @@ -3,7 +3,7 @@ Section: devel Priority: optional Maintainer: Santiago Vila <[email protected]> Standards-Version: 3.9.5 -Build-Depends: debhelper (>= 9.20120311) +Build-Depends: debhelper (>= 9.20120311), dh-autoreconf, help2man, texinfo Homepage: http://www.gnu.org/software/hello/ Package: hello --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --with autoreconf override_dh_auto_clean: [ ! -f Makefile ] || $(MAKE) distclean

