From fc5d41cad6390c62d7cf1a12620823c6ff0d570e Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 26 Jul 2010 21:31:57 +0200 Subject: [PATCH] Enable building the translations --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 1f6d4bf2f..8d6a616ee 100644 --- a/Rakefile +++ b/Rakefile @@ -43,7 +43,10 @@ def define_default_task targets += c(:MANPAGES_TRANSLATIONS).split(/\s+/).collect { |language| $manpages.collect { |manpage| manpage.gsub(/man\//, "man/#{language}/") } }.flatten if c?(:PO4A_WORKS) end - task :default => [ targets, $translations_mos, $htmlhelpbooks ].flatten.compact + # Build translations for the programs + targets += c(:TRANSLATIONS).split(/\s+/).collect { |language| "po/#{language}.mo" } + + task :default => [ targets, $htmlhelpbooks ].flatten.compact end # main