Kaydet (Commit) 2efbbaea authored tarafından Andras Timar's avatar Andras Timar

don't allow space in INSTALLDIRNAME

Change-Id: I4c20ab9051b49149d4cd52339a61c98f5f62226b
(cherry picked from commit 2fc7778b)
üst e4e4ef2a
......@@ -11989,7 +11989,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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment