From 9de5b022528d89a7b67ee0dfcda2c4f3b8df707e Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Sun, 24 Oct 2010 16:55:33 +0000 Subject: [PATCH] Renamed the variables for the catalogs and re-introduced the target 'catkeys', which builds just the en.catkeys inside HAIKU_OUTPUT_DIR/objects/catalogs git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39130 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- Jamfile | 9 ++++++--- build/jam/LocaleRules | 5 ++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Jamfile b/Jamfile index ca6435f91f..2cbac60f5a 100644 --- a/Jamfile +++ b/Jamfile @@ -198,8 +198,11 @@ if $(packageError) { } # Pseudo-target to build all targets that are localized. -NotFile catalogs ; -Depends catalogs : $(HAIKU_LOCALIZED_CATALOGS) ; - NotFile LocalizedTargets ; Depends LocalizedTargets : $(HAIKU_LOCALIZED_TARGETS) ; + +NotFile catalogs ; +Depends catalogs : $(HAIKU_LOCALE_CATALOGS) ; + +NotFile catkeys ; +Depends catkeys : $(HAIKU_LOCALE_OUTPUT_CATKEYS) ; diff --git a/build/jam/LocaleRules b/build/jam/LocaleRules index 044ecb4d90..2c0c4b0555 100644 --- a/build/jam/LocaleRules +++ b/build/jam/LocaleRules @@ -158,5 +158,8 @@ rule DoCatalogs target : signature : sources : sourceLanguage : regexp HAIKU_LOCALIZED_TARGETS += $(target) ; # For the pseudo-target catalogs - HAIKU_LOCALIZED_CATALOGS += $(catkeysFiles:S=.catalog) ; + HAIKU_LOCALE_CATALOGS += $(catkeysFiles:S=.catalog) ; + + # For the pseudo-target catkeys + HAIKU_LOCALE_OUTPUT_CATKEYS += $(generatedCatalog:S=.catkeys) ; }