summaryrefslogtreecommitdiff
path: root/Master/texmf
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-11-25 02:24:37 +0000
committerNorbert Preining <preining@logic.at>2009-11-25 02:24:37 +0000
commitd4a7fb8fe8464a2b128c5358299730969d98f780 (patch)
tree6219f2e2077790f86ec3c4ac6860b2c038cc2f30 /Master/texmf
parentd0d5f700f83fb4e00eb641ae7c1134317e5bc556 (diff)
allow the --load option to gui and gui2
git-svn-id: svn://tug.org/texlive/trunk@16159 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 9011c240d29..eae0d6247a9 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -172,7 +172,8 @@ sub main {
"fileassocmode" => "=i" },
"uninstall"=> { "force" => 1 },
"check" => { "use-svn" => 1 },
- "recreate-tlpdb" => { "arch" => "=s" }
+ "recreate-tlpdb" => { "arch" => "=s" },
+ "gui" => { "load" => 1 },
);
my %optarg;
@@ -270,6 +271,10 @@ sub main {
my %suppargs;
%suppargs = %{$actionoptions{$action}}
if defined($actionoptions{$action});
+ if ($action eq "gui2") {
+ %suppargs = %{$actionoptions{"gui"}}
+ if defined($actionoptions{"gui"});
+ }
my @notvalidargs;
for my $k (keys %opts) {
my @allargs = keys %suppargs;