Control: tags -1 +patch Hi,
Attached patch would fix this FTBFS, could you consider to apply it, please? -- Regards, Hideki Yamane henrich @ debian.or.jp/org http://wiki.debian.org/HidekiYamane
diff -Nru xprintidle-0.2/debian/changelog xprintidle-0.2/debian/changelog --- xprintidle-0.2/debian/changelog 2013-06-30 01:10:47.000000000 +0900 +++ xprintidle-0.2/debian/changelog 2013-10-15 21:54:14.000000000 +0900 @@ -1,3 +1,12 @@ +xprintidle (0.2-7.1) UNRELEASED; urgency=low + + * Non-maintainer upload. + * debian/rules + - specify "-fi" option to autoreconf fix FTBFS (Closes: #725513) + - clean target should not rely on configure-stamp. + + -- Hideki Yamane <henr...@debian.org> Tue, 15 Oct 2013 21:53:28 +0900 + xprintidle (0.2-7) unstable; urgency=low * Fix of FTBFS error; closes: #713448. diff -Nru xprintidle-0.2/debian/rules xprintidle-0.2/debian/rules --- xprintidle-0.2/debian/rules 2013-06-30 01:10:47.000000000 +0900 +++ xprintidle-0.2/debian/rules 2013-10-15 21:51:42.000000000 +0900 @@ -31,7 +31,7 @@ configure-stamp: dh_testdir set -e; for f in $(autofiles); do if [ ! -f "$$ff.upstream" ]; then cp "$$f" "$$f.upstream"; fi; done - autoreconf + autoreconf -fi ./configure --prefix=/usr --x-libraries=/usr/lib touch configure-stamp @@ -43,12 +43,12 @@ $(MAKE) touch build-stamp -clean: configure-stamp +clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp - $(MAKE) distclean - rm -f xprintidle + -$(MAKE) distclean + -rm -f xprintidle dh_clean set -e; for f in $(autofiles); do if [ -f "$$f.upstream" ]; then mv $$f.upstream $$f; fi; done