diff options
author | Norbert Preining <preining@logic.at> | 2008-09-17 23:52:23 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-09-17 23:52:23 +0000 |
commit | f34ddf83003cd6fe55ce42647b62181f71c95728 (patch) | |
tree | 18475479ec502e49a998f7938d7be6b6a9896b69 | |
parent | cde0219a9250f225a5d36651f2a4b189c37a4754 (diff) |
don't do tests which do not work on win32/darwin
git-svn-id: svn://tug.org/texlive/trunk@10626 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index f4184d2387c..ee3bd7025fc 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1296,6 +1296,15 @@ sub check_files { } print "\n"; } + + # if we are on Win32 or MacOS we return, they currently do not allow + # find -wholename (missing find on win32, or bsd find on darwin). + # we need the -use-svn version only for the check-file-coverage + # replacement anyway, so it will be used on tug, which is neither win32 nor + # darwin. + my $arch = $localtlpdb->option_platform; + return $ret if ($arch eq "win32" || $arch eq "universal-darwin"); + # # do check that all files in the trees are covered # @@ -1314,7 +1323,6 @@ sub check_files { install-tl.log tlpkg/texlive.profile !; - my $tltree = TeXLive::TLTREE->new ("svnroot" => $Master); if ($svn) { $tltree->init_from_svn; |