summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-11-15 17:35:49 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-11-15 17:35:58 +0100
commit8cd76e0fd8de4ee3173f819d690efc47b43f8c38 (patch)
treebf13f8b6d3ddfa873716f323a96195924779abaf /postprocess
parentd8edf07ed9e7a3e2f2ab43ffd2935b93326f2caa (diff)
Fix packconfig.pl when WITH_LANG=ALL
Change-Id: Id293760fdc60d79790380d0cbee259b5b1cdd2da
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/packconfig/packconfig.pl2
1 files changed, 1 insertions, 1 deletions
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;