diff options
author | Moonchild <moonchild@palemoon.org> | 2019-07-21 00:35:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-21 00:35:25 +0000 |
commit | 44455d8b483d88b01fa7dac87325b6b2d04f5956 (patch) | |
tree | 0e3fc1a435967ed45dc3ec6c9a9972e8c68b66eb /old-configure.in | |
parent | 1dbed95e4c43fdbcc2d959ddb06ebe6331afb9d8 (diff) | |
parent | 4e464892a2b547a6a0ed30d47d2de39d30a4d32a (diff) | |
download | uxp-44455d8b483d88b01fa7dac87325b6b2d04f5956.tar.gz |
Merge pull request #1190 from adeshkp/spaces-mac-appname
Issue #701 - Support spaces in Mac app name
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/old-configure.in b/old-configure.in index 3895128ae9..cdfdfb73d3 100644 --- a/old-configure.in +++ b/old-configure.in @@ -5099,13 +5099,13 @@ MOZ_ARG_WITH_STRING(macbundlename-prefix, Prefix for MOZ_MACBUNDLE_NAME], [ MOZ_MACBUNDLE_NAME_PREFIX="$withval"]) -MOZ_MACBUNDLE_NAME=`echo $MOZ_APP_DISPLAYNAME | tr -d ' '` +MOZ_MACBUNDLE_NAME=$MOZ_APP_DISPLAYNAME if test "$MOZ_MACBUNDLE_NAME_PREFIX"; then - MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME_PREFIX}${MOZ_MACBUNDLE_NAME}" + MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME_PREFIX} ${MOZ_MACBUNDLE_NAME}" fi if test "$MOZ_DEBUG"; then - MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}Debug.app + MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME}Debug.app" else MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}.app fi |