Control: tags -1 + patch

Dear vifm maintainers,

On Mon, 15 Sep 2014 23:42:22 +0000 Matthias Klose <d...@debian.org> wrote:
>  debian/rules build
> ./autogen.sh
> 
> **Error**: You must have `libtool' installed.
> Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz
> (or a newer version if it is available)
> make: *** [config.status] Error 1
> debian/rules:26: recipe for target 'config.status' failed
> dpkg-buildpackage: error: debian/rules build gave error exit status 2

vifm only uses libtoolize but checks for libtool which is now in package
libtool-bin. I am attaching a patch that fixes the libtoolize check to
look for the correct tool.

cheers, josch
diff -u vifm-0.4/debian/changelog vifm-0.4/debian/changelog
--- vifm-0.4/debian/changelog
+++ vifm-0.4/debian/changelog
@@ -1,3 +1,10 @@
+vifm (0.4-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Check for libtoolize rather than libtool. Closes: #761791
+
+ -- Johannes Schauer <j.scha...@email.de>  Tue, 07 Oct 2014 21:19:56 +0200
+
 vifm (0.4-1) unstable; urgency=low
 
   * new upstream release with UTF-8 support (Closes: #495805)
only in patch2:
unchanged:
--- vifm-0.4.orig/autogen.sh
+++ vifm-0.4/autogen.sh
@@ -15,7 +15,7 @@
 }
 
 (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && {
-  (libtool --version) < /dev/null > /dev/null 2>&1 || {
+  (libtoolize --version) < /dev/null > /dev/null 2>&1 || {
     echo
     echo "**Error**: You must have \`libtool' installed."
     echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2d.tar.gz";

Reply via email to