From 8cd76e0fd8de4ee3173f819d690efc47b43f8c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fridrich=20=C5=A0trba?= Date: Thu, 15 Nov 2012 17:35:49 +0100 Subject: [PATCH] Fix packconfig.pl when WITH_LANG=ALL Change-Id: Id293760fdc60d79790380d0cbee259b5b1cdd2da --- postprocess/packconfig/packconfig.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postprocess/packconfig/packconfig.pl b/postprocess/packconfig/packconfig.pl index c5b4e903c0d4..372ba5e5cba2 100644 --- a/postprocess/packconfig/packconfig.pl +++ b/postprocess/packconfig/packconfig.pl @@ -47,7 +47,7 @@ my $current_lang; # big fat global because File::Find is a pig parse_options(); #pack the .ui translations -my @langs = split(/\s+/, $ENV{WITH_LANG}); +my @langs = split(/\s+/, $ENV{WITH_LANG_LIST}); foreach (@langs) { next if ($_ eq "en-US"); my %files_hash;