diff options
author | Norbert Preining <preining@logic.at> | 2017-06-25 05:32:57 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-06-25 05:32:57 +0000 |
commit | 1684a92a4962d0450ae30a975276e37c9641b014 (patch) | |
tree | ed6d7a5e24ce8c5a765afd79c1fc8b9abe8b75ff /Master | |
parent | 266fd2628241752a29c63d305c52bb37a1eed214 (diff) |
fix -profile for custom-scheme
git-svn-id: svn://tug.org/texlive/trunk@44690 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index 723866666e8..b0941dcbfed 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1913,7 +1913,7 @@ sub read_profile { # if a profile contains *only* the selected_scheme setting without # any collection, we assume that exactely that scheme should be installed my $coldefined = 0; - foreach my $k (keys %pro) { + foreach my $k (keys %profiledata) { if ($k =~ m/^collection-/) { $coldefined = 1; last; @@ -1925,7 +1925,7 @@ sub read_profile { # # check whether the collections are actually present in case of # changes on the server - foreach my $k (keys %pro) { + foreach my $k (keys %profiledata) { if ($k =~ m/^collection-/) { if (!defined($tlpdb->get_package($k))) { tlwarn("The profile references a non-existing collection: $k\n"); |