diff options
author | Norbert Preining <preining@logic.at> | 2008-10-25 23:52:29 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-25 23:52:29 +0000 |
commit | efb469cd30ff03e4940570fc78e554272af635e4 (patch) | |
tree | c7ea976a180e619b83b03902169d560efa4758a1 /Master | |
parent | 2764d9ecb489f9132454f7cff77fb18f05c26ff7 (diff) |
fix warning if a dangling symlink should be packed
git-svn-id: svn://tug.org/texlive/trunk@11057 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index c26f151b8c6..b1f859b9166 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -603,7 +603,7 @@ sub make_container { open ZIP, "|-", @cmdline or die "Cannot open container program @cmdline: $!"; } map { - if (! -f $_) { + if (! -e $_) { print STDERR "!!!Error: non-existent $_\n"; } else { print ZIP "$_\n"; |