Revision 7c2a73eb
Von Bernd Bleßmann vor 7 Monaten hinzugefügt
scripts/installation_check.pl | ||
---|---|---|
197 | 197 |
print_header("Checking LaTeX Dependencies for Master Templates '$dir'"); |
198 | 198 |
kpsewhich($path, 'cls', $_) for SL::InstallationCheck::classes_from_latex($path, '\documentclass'); |
199 | 199 |
|
200 |
my @sty = sort { $a cmp $b } uniq ( |
|
200 |
my @sty = sort { $a cmp $b } List::MoreUtils::uniq (
|
|
201 | 201 |
SL::InstallationCheck::classes_from_latex($path, '\usepackage'), |
202 | 202 |
qw(textcomp ulem embedfile) |
203 | 203 |
); |
Auch abrufbar als: Unified diff
Installation-Check: uniq wird nicht standardmäßig exportiert von List::MoreUtils
Die Umstellung auf "require" hat damit die Prüfung der LaTeX-Pakete
kaputt gemacht.