Package: bfbtester Severity: important Tags: patch Hi,
bfbtester currently fails to build because it touches some of the autoconf files, which messes up the time stamps, so the generated Makefile might attempt to regenerate them again. The attached patch touches these files in the correct order, so this won't happen. Search for skew in /usr/share/doc/autotools-dev/README.Debian.gz for more information. bye, Roman -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: m68k Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.18-m68k-amiga Locale: LANG=de_DE.UTF-8, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
diff -ur bfbtester-2.0.1.org/debian/rules bfbtester-2.0.1/debian/rules --- bfbtester-2.0.1.org/debian/rules 2006-10-21 01:38:56.000000000 +0200 +++ bfbtester-2.0.1/debian/rules 2006-10-21 03:37:41.000000000 +0200 @@ -2,6 +2,11 @@ DEB_INSTALL_MANPAGES_bfbtester := debian/bfbtester.1 +common-configure-impl:: + cd $(DEB_BUILDDIR); touch aclocal.m4 && touch Makefile.in && \ + touch src/Makefile.in && touch src/config.h.in && \ + touch src/bfbt/Makefile && touch configure + include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk