summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/check-wrapper-consistency
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-10-25 15:33:44 +0000
committerKarl Berry <karl@freefriends.org>2014-10-25 15:33:44 +0000
commit343e1b1998de58c396efb4d2aced822714bbf682 (patch)
tree791875a289d5638728987e4b3482be8ed07f0926 /Master/tlpkg/bin/check-wrapper-consistency
parent9acced1ed8cbbbead5f5dcd6bec6a058f372e881 (diff)
objc needed on macs; check early for wrapper dirs
git-svn-id: svn://tug.org/texlive/trunk@35438 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/check-wrapper-consistency')
-rwxr-xr-xMaster/tlpkg/bin/check-wrapper-consistency3
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency
index c693b2e5bb8..97c6e4eeaa7 100755
--- a/Master/tlpkg/bin/check-wrapper-consistency
+++ b/Master/tlpkg/bin/check-wrapper-consistency
@@ -128,6 +128,9 @@ sub list_shell_scripts {
my $Work_linked_scripts = "$Work/texk/texlive/linked_scripts";
my $Work_tl_scripts = "$Work/texk/texlive/tl_scripts";
+ -d "$Work_linked_scripts"||die "no linked_scripts dir: $Work_linked_scripts";
+ -d "$Work_tl_scripts" || die "no tl_scripts dir: $Work_tl_scripts";
+
# use make; ensure we get only the last line, although that should be
# all there is.
my $lst = `make -s -C $Work_linked_scripts echo-shell-scripts | tail -1`;