summaryrefslogtreecommitdiff
path: root/Master/install-tl.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/install-tl.pl')
-rwxr-xr-xMaster/install-tl.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl
index c8b1471689d..3562bf6b572 100755
--- a/Master/install-tl.pl
+++ b/Master/install-tl.pl
@@ -362,6 +362,15 @@ sub calc_depends {
}
}
+ # install source packages, they don't contain *any* dependencies
+ if ($vars{'option_src'}) {
+ foreach my $p (keys %install) {
+ my $tlpobj = $tlpdb->get_package("$p.SOURCES");
+ if (defined($tlpobj)) {
+ $install{"$p.SOURCES"} = 1;
+ }
+ }
+ }
# now do the size computation
my $size = 0;
foreach my $p (keys %install) {