summaryrefslogtreecommitdiffstats
path: root/move
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-12-01 10:51:39 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-12-01 10:51:39 +0000
commit50af7f14470f95f2cc00c7cec4b2cb5c64856d0f (patch)
tree3fe3863291c5b2661482318eaac25f87672ce6a4 /move
parent34d3120b5571640668ddebd28d944f850de19c5a (diff)
downloaddrakx-backup-do-not-use-50af7f14470f95f2cc00c7cec4b2cb5c64856d0f.tar
drakx-backup-do-not-use-50af7f14470f95f2cc00c7cec4b2cb5c64856d0f.tar.gz
drakx-backup-do-not-use-50af7f14470f95f2cc00c7cec4b2cb5c64856d0f.tar.bz2
drakx-backup-do-not-use-50af7f14470f95f2cc00c7cec4b2cb5c64856d0f.tar.xz
drakx-backup-do-not-use-50af7f14470f95f2cc00c7cec4b2cb5c64856d0f.zip
we want ksycoca-en_US, not ksycoca-en
Diffstat (limited to 'move')
-rwxr-xr-xmove/make_live5
1 files changed, 3 insertions, 2 deletions
diff --git a/move/make_live b/move/make_live
index 209fcb770..6beda13e5 100755
--- a/move/make_live
+++ b/move/make_live
@@ -4,7 +4,8 @@ use lib "../perl-install";
use common;
use pkgs;
-my @langs = map { /^../; $& } split /\s/, (cat_('move.pm') =~ /ALLOWED_LANGS = qw\((.*)\)/)[0];
+my @ALLOWED_LANGS = split(' ', first(cat_('move.pm') =~ /ALLOWED_LANGS = qw\((.*)\)/));
+my @langs = map { /^../; $& } @ALLOWED_LANGS;
@ARGV <= 1 or die "usage: make_live [live_location=/tmp/live_tree]\n";
@@ -102,7 +103,7 @@ print "Making live in $::prefix directory.\n";
$ENV{HELP_BROWSER} = "kfmclient openProfile webbrowsing";
$ENV{BROWSER} = "kfmclient openProfile webbrowsing";
$ENV{DESKTOP} = "kde";
- foreach (@langs) {
+ foreach (@ALLOWED_LANGS) {
$ENV{LC_ALL} = $_;
run_program::rooted($::prefix, 'kbuildsycoca');
cp_af("$::prefix/tmp/kde-root/ksycoca", "$::prefix/usr/share/services/ksycoca-$_");