diff options
author | Karl Berry <karl@freefriends.org> | 2008-05-25 13:01:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-05-25 13:01:41 +0000 |
commit | ce300eaa7e3071cd7f547d71d42aa8e64169c088 (patch) | |
tree | b5f71a994776838e9db3c9f37260afaf710b3c59 /Master/tlpkg/bin/check-wrapper-consistency | |
parent | 757db971862c6661ac99d35871ebb851e8d53211 (diff) |
no dviasm.bat since it is python; use our starter for makeglossaries
git-svn-id: svn://tug.org/texlive/trunk@8344 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/check-wrapper-consistency')
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index 2db7482e8db..0890b16dc78 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -79,6 +79,7 @@ sub unx_wrapper_entries die "readlink($ent) failed: $!" if !defined ($target); next unless $target =~ /^\.\./; # skip all but .. symlinks next if $target =~ /ps4pdf/; # has its own .bat, sorry for special case + next if $target =~ /dviasm/; # has no .bat, sorry for special case # the target of the symlink should be executable. warn "$ent: target $target not executable\n" if ! -x $target; |