diff options
author | Norbert Preining <preining@logic.at> | 2009-06-12 14:22:26 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-12 14:22:26 +0000 |
commit | 3a7b4ae33d8676a35278bade6d523c03c630a6a5 (patch) | |
tree | 2098c1fbb102255228a23fea4b9a4991860ba468 /Master | |
parent | 1abe78d0600602fcae258cb50548c4f7a61f1e97 (diff) |
add "custom" to the list of available architectures
git-svn-id: svn://tug.org/texlive/trunk@13725 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/install-tl b/Master/install-tl index 46344bf0a9c..a4d4b6313f6 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1352,6 +1352,9 @@ sub save_options_into_tlpdb { if ($vars{$_}) { push @archs, $1; } } } + if ($opt_custom_bin) { + push @archs, "custom"; + } $localtlpdb->option_available_architectures(@archs); $localtlpdb->save() unless $vars{'from_dvd'}; } |