diff options
author | Norbert Preining <preining@logic.at> | 2008-07-26 18:56:22 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-26 18:56:22 +0000 |
commit | 47f84d7024ed77e5f6ebb75e209b7e0ed4c8be3e (patch) | |
tree | d6f99138c037ea61575a9324aa90d58f9c35c929 /Master/install-tl | |
parent | 665acdd21c5a8bc2773bab7b41e010001d588199 (diff) |
pattern matching magic: now more archs can be given after a binpattern type, and also negated ones
git-svn-id: svn://tug.org/texlive/trunk@9793 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 10aed1a3bee..3108e3fcd98 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -621,7 +621,7 @@ sub calc_depends { if ($p_dep =~ m/^(.*)\.ARCH$/) { my $foo = "$1"; foreach $a (@archs) { - $install{"$foo.$a"} = 1; + $install{"$foo.$a"} = 1 if defined($tlpdb->get_package("$foo.$a")); } } elsif ($p_dep =~ m/^(.*)\.win32$/) { # a win32 package should *only* be installed if we are installing |