diff options
author | Karl Berry <karl@freefriends.org> | 2010-03-02 01:18:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-03-02 01:18:11 +0000 |
commit | 31e7d8df91c09b7e827f54fcb61267193233907b (patch) | |
tree | e21f565bc138bd60ba1de7cacef797a8741b6520 | |
parent | 6e7ce111ef70383750f909f3dc2f97d4efeccd6b (diff) |
prepend our dir to INC before using our module.
git-svn-id: svn://tug.org/texlive/trunk@17279 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-check-files-by-format | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-check-files-by-format b/Master/tlpkg/bin/tl-check-files-by-format index fad08b18657..1e83a3bf582 100755 --- a/Master/tlpkg/bin/tl-check-files-by-format +++ b/Master/tlpkg/bin/tl-check-files-by-format @@ -22,7 +22,6 @@ use warnings; use File::Basename; -use TeXLive::TLPDB; use File::Temp; BEGIN { @@ -31,6 +30,8 @@ BEGIN { unshift (@INC, "$tlroot/tlpkg"); } +use TeXLive::TLPDB; + # 1 means pdfinfo issues errors but still exits successfully # 2 means pdfinfo exits non-zero my $exclude_pdf = { |