diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-08-15 03:19:07 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-08-15 03:19:07 -0400 |
commit | f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c (patch) | |
tree | e1d801a2a20f6b6d286fb8635dda885036000044 | |
parent | 1102f3c7075a2e933955881d5aea9bd89af07add (diff) | |
download | UXP-f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c.tar UXP-f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c.tar.gz UXP-f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c.tar.lz UXP-f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c.tar.xz UXP-f86a80ee787fc2f0a0f4a9cb2cb43d2ec708011c.zip |
Do not try and include devtools shared l10n when devtools is not built
-rw-r--r-- | toolkit/locales/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolkit/locales/Makefile.in b/toolkit/locales/Makefile.in index 189e0b1b0..198d9aaa8 100644 --- a/toolkit/locales/Makefile.in +++ b/toolkit/locales/Makefile.in @@ -16,7 +16,9 @@ libs-%: @$(MAKE) -C ../../netwerk/locales/ libs AB_CD=$* XPI_NAME=locale-$* @$(MAKE) -C ../../dom/locales/ libs AB_CD=$* XPI_NAME=locale-$* @$(MAKE) -C ../../security/manager/locales/ libs AB_CD=$* XPI_NAME=locale-$* +ifdef MOZ_DEVTOOLS_SERVER @$(MAKE) -C ../../devtools/shared/locales/ libs AB_CD=$* XPI_NAME=locale-$* +endif @$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* # target to be used by multi-locale l10n builds, just add this locale |