Kaydet (Commit) 79f3a7bf authored tarafından Andras Timar's avatar Andras Timar

OSX issues with space in product name

Change-Id: I0155372c8e5cd0eb91bfbea304190502cbf32e3c
üst b577b5b5
...@@ -667,7 +667,8 @@ darwin*) # Mac OS X or iOS ...@@ -667,7 +667,8 @@ darwin*) # Mac OS X or iOS
test_cups=no test_cups=no
else else
_os=Darwin _os=Darwin
INSTROOTSUFFIX=/$PRODUCTNAME.app/Contents ONEWORDPRODUCTNAME=`echo "${PRODUCTNAME// /}"`
INSTROOTSUFFIX=/$ONEWORDPRODUCTNAME.app/Contents
SDKDIRNAME=AC_PACKAGE_NAME${PRODUCTVERSION}_SDK SDKDIRNAME=AC_PACKAGE_NAME${PRODUCTVERSION}_SDK
fi fi
enable_systray=no enable_systray=no
...@@ -12454,7 +12455,7 @@ else ...@@ -12454,7 +12455,7 @@ else
fi fi
AC_SUBST(WITH_COMPAT_OOWRAPPERS) 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]) AC_MSG_CHECKING([for install dirname])
if test -n "$with_install_dirname" -a "$with_install_dirname" != "no" -a "$with_install_dirname" != "yes"; then if test -n "$with_install_dirname" -a "$with_install_dirname" != "no" -a "$with_install_dirname" != "yes"; then
INSTALLDIRNAME="$with_install_dirname" INSTALLDIRNAME="$with_install_dirname"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#ifdef MACOSX #ifdef MACOSX
Directory gid_Dir_Bundle Directory gid_Dir_Bundle
ParentID = PD_PROGDIR; ParentID = PD_PROGDIR;
HostName = "%PRODUCTNAME.app"; HostName = "%ONEWORDPRODUCTNAME.app";
End End
Directory gid_Dir_Bundle_Contents Directory gid_Dir_Bundle_Contents
......
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