summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/localedrake
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/localedrake')
-rw-r--r--perl-install/standalone/localedrake17
1 files changed, 0 insertions, 17 deletions
diff --git a/perl-install/standalone/localedrake b/perl-install/standalone/localedrake
deleted file mode 100644
index cc9b68260..000000000
--- a/perl-install/standalone/localedrake
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl
-
-use lib qw(/usr/lib/libDrakX);
-
-use interactive;
-use lang;
-use any;
-
-my $in = 'interactive'->vnew('su');
-
-my ($lang, $langs) = lang::read();
-if ($lang = any::selectLanguage($in, $lang, $langs)) {
- lang::write('', $lang);
- lang::write_langs('', $langs);
-}
-
-$in->exit(0);