Control: -1 patch * Andreas Barth ([email protected]) [140906 09:28]: > this package FTBFS on ppc64el, see > https://buildd.debian.org/status/fetch.php?pkg=libxfce4ui&arch=ppc64el&ver=4.10.0-5&stamp=1409855066 > > the final lines of the build contain: > | make[4]: Entering directory '/«PKGBUILDDIR»/libxfce4ui' > | nm: '.libs/libxfce4ui-1.so*': No such file > > which indicate that dh-autoreconf would probably be enough to get that > fixed.
This patch fixes the bug (plus replacing autotools-dev by dh-autoreconf in debian/control). As this blocks about 50 packages, I'd be willing to help fixing this bug, if useful also by an NMU. Andi diff -ur libxfce4ui-4.10.0~/debian/rules libxfce4ui-4.10.0/debian/rules --- libxfce4ui-4.10.0~/debian/rules 2013-09-22 18:55:30.000000000 +0000 +++ libxfce4ui-4.10.0/debian/rules 2014-09-06 10:07:49.566318002 +0000 @@ -9,11 +9,10 @@ endif %: - dh $@ --parallel --with autotools-dev + dh $@ --parallel --with autoreconf -override_dh_auto_configure: - dh_auto_configure -- --with-vendor-info=$(XFVENDOR) --disable-silent-rules \ - --disable-gladeui +override_dh_autoreconf: + dh_autoreconf xdt-autogen _______________________________________________ Pkg-xfce-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-xfce-devel

