Package: iml Version: 1.0.3-2 Severity: normal Tags: patch User: [EMAIL PROTECTED] Usertags: origin-ubuntu jaunty ubuntu-patch
Hi, Your package uses DEB_AUTO_UPDATE_LIBTOOL to try and have libtoolize run at build time. However it uses a value of "1", and cdbs only runs libtoolize if the value is "pre" or "post". The attached patch changes this to "pre" so that libtoolize is correctly run. Please consider applying it. Thanks, James
diff -u iml-1.0.3/debian/rules iml-1.0.3/debian/rules --- iml-1.0.3/debian/rules +++ iml-1.0.3/debian/rules @@ -3,7 +3,7 @@ DEB_AUTO_UPDATE_AUTOCONF = 2.50 DEB_AUTO_UPDATE_AUTOMAKE = 1.10 DEB_AUTO_UPDATE_ACLOCAL = 1.10 -DEB_AUTO_UPDATE_LIBTOOL = 1 +DEB_AUTO_UPDATE_LIBTOOL = pre include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk

