summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
Diffstat (limited to 'Master')
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm2
-rwxr-xr-xMaster/tlpkg/bin/check-wrapper-consistency3
2 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index ccb67ae6a5f..d0897d20885 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -215,7 +215,7 @@ sub _get_matching_files {
} elsif ($pattype eq "d") {
@matchfiles = $self->files_under_path($patdata);
} else {
- die "Unknown pattern $p";
+ die "Unknown pattern pattern type `$pattype' in $p";
}
ddebug("p=$p; matchfiles=@matchfiles\n");
return @matchfiles;
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency
index 318e69956cd..79b04a3c605 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 TeX Users Group.
+# Copyright 2008, 2009 TeX Users Group.
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
@@ -101,6 +101,7 @@ sub check_w32
next if $target =~ /simpdftex/; # shell script
next if $target =~ /tex4ht/; # tex4ht has its own .bat's
next if $target =~ /tlmgr/; # does things its own way
+ next if $target =~ /xasy/; # no need
#print "$k -> $uw{$k}\n";
$diff += system ("cmp $w32dir/$k.bat $w32canonical");
}