diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-22 18:36:16 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-22 18:36:16 -0400 |
commit | 3c48cc85098587c7f3a6cefe133a94468927d100 (patch) | |
tree | c5b5f16f88b9241ca2d8bb6e24e161b515eb5631 /build/application.ini | |
parent | 8ae405b6934a1e04cd8c294731175e0f66c3ba29 (diff) | |
download | uxp-3c48cc85098587c7f3a6cefe133a94468927d100.tar.gz |
Resolve issues with application.ini not allowing non-mcp applications to be official and have their own vendor
Also add BinOC cause two words breaks the build system
Diffstat (limited to 'build/application.ini')
-rw-r--r-- | build/application.ini | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/application.ini b/build/application.ini index e60f86b694..c3ab3abddb 100644 --- a/build/application.ini +++ b/build/application.ini @@ -18,12 +18,14 @@ #include @TOPOBJDIR@/buildid.h #include @TOPOBJDIR@/source-repo.h [App] -#ifdef MC_OFFICIAL +#if defined(MC_OFFICIAL) && defined(MC_PALEMOON) || defined(MC_BASILISK) Vendor=Moonchild Productions +#elif defined(MC_OFFICIAL) && defined(BINOC_BOREALIS) +Vendor=Binary Outcast #else Vendor=@MOZ_APP_VENDOR@ #endif -#if defined(MOZ_PHOENIX) && defined(MC_PALEMOON) +#if defined(MC_OFFICIAL) && defined(MC_PALEMOON) Name=Pale Moon #else Name=@MOZ_APP_BASENAME@ |