diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-08-05 10:49:45 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-08-07 22:00:25 +0100 |
commit | e6e34783a46924364a3844853e43be1962eacea2 (patch) | |
tree | d0be33f690367a025bbd8a0414874fc9485875a3 | |
parent | c704e8dea74ad9f1ff14c41fae924f66abd7533a (diff) | |
download | libguestfs-e6e34783a46924364a3844853e43be1962eacea2.tar.gz libguestfs-e6e34783a46924364a3844853e43be1962eacea2.tar.xz libguestfs-e6e34783a46924364a3844853e43be1962eacea2.zip |
debian: bash is required to run libtool replacement script.
This was failing on Debian where $(SHELL) is the minimal dash shell.
(cherry picked from commit 6a98ed953b1e3b0d3251385f0ca2dd1dee80b63d)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1be11e47..58f90423 100644 --- a/configure.ac +++ b/configure.ac @@ -819,7 +819,7 @@ AC_SUBST(MAX_PROC_NR) dnl Replace libtool with a wrapper that clobbers dependency_libs in *.la files dnl http://lists.fedoraproject.org/pipermail/devel/2010-November/146343.html -LIBTOOL='$(SHELL) $(top_srcdir)/libtool-kill-dependency_libs.sh $(top_builddir)/libtool' +LIBTOOL='bash $(top_srcdir)/libtool-kill-dependency_libs.sh $(top_builddir)/libtool' AC_SUBST([LIBTOOL]) dnl Run in subdirs. |