[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - configure.ac

Andras Timar andras.timar at collabora.com
Thu Mar 9 11:29:55 UTC 2017


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2fc7778ba2ce545ecb6bd2e60a09eeb8fdb44b49
Author: Andras Timar <andras.timar at collabora.com>
Date:   Thu Mar 9 12:28:39 2017 +0100

    don't allow space in INSTALLDIRNAME
    
    Change-Id: I4c20ab9051b49149d4cd52339a61c98f5f62226b

diff --git a/configure.ac b/configure.ac
index b5d4ae2..4192506 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12347,7 +12347,7 @@ else
 fi
 AC_SUBST(WITH_COMPAT_OOWRAPPERS)
 
-INSTALLDIRNAME=`echo AC_PACKAGE_NAME | $AWK '{print tolower($0)}'`
+INSTALLDIRNAME=`echo AC_PACKAGE_NAME | $AWK '{gsub(" ", "", $0);print tolower($0)}'`
 AC_MSG_CHECKING([for install dirname])
 if test -n "$with_install_dirname" -a "$with_install_dirname" != "no" -a "$with_install_dirname" != "yes"; then
     INSTALLDIRNAME="$with_install_dirname"


More information about the Libreoffice-commits mailing list