summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-01-26 00:09:58 +0000
committerKarl Berry <karl@freefriends.org>2013-01-26 00:09:58 +0000
commitdf5f4033104469544b8831195549c9b35055dad6 (patch)
tree29fb2f86d85e95808a8200989293671529f4de24 /Master
parent220642dbc88e804b285b1d77b7785de73213236b (diff)
omit shell tl_scripts from consistency check
git-svn-id: svn://tug.org/texlive/trunk@28947 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/tlpkg/bin/check-wrapper-consistency4
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency
index 49ff4c9d122..aaa23ac0892 100755
--- a/Master/tlpkg/bin/check-wrapper-consistency
+++ b/Master/tlpkg/bin/check-wrapper-consistency
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
# $Id$
-# Copyright 2008, 2009, 2010, 2011 TeX Users Group.
+# Copyright 2008, 2009, 2010, 2011, 2012, 2013 TeX Users Group.
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
@@ -128,10 +128,12 @@ sub list_shell_scripts {
# has to be the Work/ directory to get the Makefile, not Makefile.{in,am}.
my $Work = "$Master/../Build/source/Work";
my $Work_linked_scripts = "$Work/texk/texlive/linked_scripts";
+ my $Work_tl_scripts = "$Work/texk/texlive/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`;
+ $lst .= `make -s -C $Work_tl_scripts echo-shell-scripts | tail -1`;
for my $script (split (" ", $lst)) {
$script =~ s,^.*/,,;