diff options
author | Andras Timar <andras.timar@collabora.com> | 2017-03-09 12:28:39 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2024-01-15 12:20:16 +0100 |
commit | d138d14e02039306e22924f1720012887ca08a3a (patch) | |
tree | f93ebbc382398e1a029dec82e5af47e8567126dd | |
parent | a8f037adf8337dd9f19a448be589933e3b564961 (diff) |
[cp] don't allow space in INSTALLDIRNAME
(cherry picked from commit 2fc7778ba2ce545ecb6bd2e60a09eeb8fdb44b49)
Change-Id: I4c20ab9051b49149d4cd52339a61c98f5f62226b
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9d5d806b0ed2..25e427ac553c 100644 --- a/configure.ac +++ b/configure.ac @@ -14546,7 +14546,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" |