diff options
author | Norbert Preining <preining@logic.at> | 2009-05-22 10:27:22 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-05-22 10:27:22 +0000 |
commit | a9b4d4a67ea7c5b695de0847c80641cbc98d63ab (patch) | |
tree | d3609656e15dabee387729abbc2650e4f05c1dc2 | |
parent | 643c19ccc0d63265b6610a8379dac9cae3b5e138 (diff) |
fix check-execute-consistency to accept AddHyphen with trailing spaces
git-svn-id: svn://tug.org/texlive/trunk@13376 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/check-execute-consistency | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/check-execute-consistency b/Master/tlpkg/bin/check-execute-consistency index ccb569cc23c..5d9eb3aa4be 100755 --- a/Master/tlpkg/bin/check-execute-consistency +++ b/Master/tlpkg/bin/check-execute-consistency @@ -50,7 +50,7 @@ sub main my $foo = $1; chomp($foo); push @{$fmtcodes{$foo}}, $pkg; - } elsif ($e =~ m/AddHyphen\s+.*\s+file=(\S+)$/) { + } elsif ($e =~ m/AddHyphen\s+.*\s+file=(\S+)\s*$/) { my $foo = $1; chomp($foo); push @{$langcodes{$foo}}, $pkg; |