tag 634536 + patch thanks On Tue, Jul 19, 2011 at 08:27:06AM +0200, Lucas Nussbaum wrote: > Source: cxxtools > Version: 1.4.8-3 > Severity: serious > Tags: wheezy sid > User: debian...@lists.debian.org > Usertags: qa-ftbfs-20110718 qa-ftbfs > Justification: FTBFS on amd64 > > Hi, > > During a rebuild of all packages in sid, your package failed to build on > amd64. > > Relevant part: > > make[1]: Entering directory `/build/cxxtools-Lr1RkN/cxxtools-1.4.8' > > make[1]: Nothing to be done for `update-config'. > > make[1]: Leaving directory `/build/cxxtools-Lr1RkN/cxxtools-1.4.8' > > if [ ! -e configure ] ; then aclocal -I /usr/share/autoconf-archive && > > autoheader && ln -s /usr/share/gettext/config.rpath . && libtoolize && > > automake -a && autoconf; fi > > aclocal: couldn't open directory `/usr/share/autoconf-archive': No such > > file or directory > > make: *** [post-patches] Error 1 >
The problem is that autoconf-archive has moved the headers file from its own private directory to the standard autoconf directory. The patch below fixes the problem. diff -u cxxtools-1.4.8/debian/rules cxxtools-1.4.8/debian/rules --- cxxtools-1.4.8/debian/rules +++ cxxtools-1.4.8/debian/rules @@ -13,7 +13,7 @@ # currently. It used to be necessary since we did changes to # configure.in and Makefile.am files. post-patches:: - if [ ! -e configure ] ; then aclocal -I /usr/share/autoconf-archive && autoheader && ln -s /usr/share/gettext/config.rpath . && libtoolize && automake -a && autoconf; fi + if [ ! -e configure ] ; then aclocal && autoheader && ln -s /usr/share/gettext/config.rpath . && libtoolize && automake -a && autoconf; fi clean:: rm -f configure aclocal.m4 config.* depcomp install-sh ltmain.sh missing libtool -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org