diff options
author | Richard W.M. Jones <[email protected]> | 2011-08-05 10:49:45 +0100 |
---|---|---|
committer | Richard W.M. Jones <[email protected]> | 2011-08-07 22:04:30 +0100 |
commit | ae8172b8ffc4135d41ebc15caa9c54884b314e70 (patch) | |
tree | d28b402f73788defb9aabc350e3921364b691d0e | |
parent | a37b8356f0e8e1110092ece895c3e325e29fed04 (diff) | |
download | libguestfs-ae8172b8ffc4135d41ebc15caa9c54884b314e70.tar.gz libguestfs-ae8172b8ffc4135d41ebc15caa9c54884b314e70.tar.xz libguestfs-ae8172b8ffc4135d41ebc15caa9c54884b314e70.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 db684dd4..13aedfd6 100644 --- a/configure.ac +++ b/configure.ac @@ -804,7 +804,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. |