You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2014/03/03 20:03:03 UTC

svn commit: r1573676 - /subversion/trunk/configure.ac

Author: breser
Date: Mon Mar  3 19:03:02 2014
New Revision: 1573676

URL: http://svn.apache.org/r1573676
Log:
Quote the libtool path in case it contains spaces.

* configure.ac: Quote when definining since sometimes we specify the shell and
    not just the path to libtool.

Modified:
    subversion/trunk/configure.ac

Modified: subversion/trunk/configure.ac
URL: http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=1573676&r1=1573675&r2=1573676&view=diff
==============================================================================
--- subversion/trunk/configure.ac (original)
+++ subversion/trunk/configure.ac Mon Mar  3 19:03:02 2014
@@ -224,7 +224,7 @@ if test "$experimental_libtool" = "yes";
   SVN_LIBTOOL="$sh_libtool"
 else
   sh_libtool="$abs_builddir/libtool"
-  SVN_LIBTOOL="\$(SHELL) $sh_libtool"
+  SVN_LIBTOOL="\$(SHELL) \"$sh_libtool\""
 fi
 AC_SUBST(SVN_LIBTOOL)