summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/install-tl4
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");