[Libreoffice-commits] core.git: solenv/gbuild

David Tardon dtardon at redhat.com
Sun Mar 3 22:55:30 PST 2013


Hi,

On Sat, Mar 02, 2013 at 09:58:46AM -0800, Peter Foley wrote:
>  solenv/gbuild/AllLangHelp.mk |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> New commits:
> commit 5b272379dbfb27875c1fbeed98d71699c8beaec7
> Author: Peter Foley <pefoley2 at verizon.net>
> Date:   Sat Mar 2 12:55:46 2013 -0500
> 
>     always build help for en-US
>     
>     Change-Id: Ibcde46381cac50058f93e26f0eceb9b1446d1702
> 
> diff --git a/solenv/gbuild/AllLangHelp.mk b/solenv/gbuild/AllLangHelp.mk
> index 2e4599e..a6c4562 100644
> --- a/solenv/gbuild/AllLangHelp.mk
> +++ b/solenv/gbuild/AllLangHelp.mk
> @@ -17,7 +17,7 @@ gb_AllLangHelp_TRANLATIONSDIR := $(SRCDIR)/translations
>  
>  # Creates and delivers all language versions of a module.
>  
> -gb_AllLangHelp_LANGS := $(gb_WITH_LANG)
> +gb_AllLangHelp_LANGS := en-US $(gb_WITH_LANG)

I thought $(gb_WITH_LANG) always contained en-US these days... Is it not
so?

Btw, it should be

gb_AllLangHelp_LANGS := en-US $(filter-out en-US,$(gb_WITH_LANG))

to avoid the possibility of having en-US in the list twice.

D.


More information about the LibreOffice mailing list