diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
commit | 4e464892a2b547a6a0ed30d47d2de39d30a4d32a (patch) | |
tree | a026d38b33b1ca03b27c0a3515081ad9f2305042 /old-configure.in | |
parent | c4d192b49246ed72e2b857452b557ef1bef83c58 (diff) | |
download | uxp-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.gz |
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 |