From 4b4b4a59cac398083e4ee224a1b90c98c26c1dfa Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Mon, 14 May 2018 16:12:00 -0400 Subject: [PALEMOON] Override Windows Installer usage of MOZ_APP_DISPLAYNAME when appropriate --- application/palemoon/installer/windows/moz.build | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'application/palemoon') diff --git a/application/palemoon/installer/windows/moz.build b/application/palemoon/installer/windows/moz.build index 12e7831ed..394a85ccf 100644 --- a/application/palemoon/installer/windows/moz.build +++ b/application/palemoon/installer/windows/moz.build @@ -4,8 +4,12 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -DEFINES['APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] - DEFINES['MOZ_APP_NAME'] = CONFIG['MOZ_APP_NAME'] -DEFINES['MOZ_APP_DISPLAYNAME'] = CONFIG['MOZ_APP_DISPLAYNAME'] +DEFINES['APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] DEFINES['MOZILLA_VERSION'] = CONFIG['MOZILLA_VERSION'] + +if CONFIG['MOZ_APP_DISPLAYNAME'] in ('PaleMoon', 'Palemoon'): + DEFINES['MOZ_APP_DISPLAYNAME'] = "Pale Moon" +else: + DEFINES['MOZ_APP_DISPLAYNAME'] = CONFIG['MOZ_APP_DISPLAYNAME'] + -- cgit v1.2.3