diff options
author | Norbert Preining <preining@logic.at> | 2008-10-01 14:10:35 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-01 14:10:35 +0000 |
commit | 5f55d44501193652d5e876bdd2fa43dacc91186c (patch) | |
tree | 1ba30d3a46aecf3cc35383bbcf5c2909b5576cbb | |
parent | 81a9495bc685378bc5f189e94460e126d9f076eb (diff) |
remove included patch
git-svn-id: svn://tug.org/texlive/trunk@10812 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/etc/allow-continuation-lines-in-tlpsrc.diff | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Master/tlpkg/etc/allow-continuation-lines-in-tlpsrc.diff b/Master/tlpkg/etc/allow-continuation-lines-in-tlpsrc.diff deleted file mode 100644 index d4ea539611a..00000000000 --- a/Master/tlpkg/etc/allow-continuation-lines-in-tlpsrc.diff +++ /dev/null @@ -1,30 +0,0 @@ -Index: TLPSRC.pm -=================================================================== ---- TLPSRC.pm (revision 10694) -+++ TLPSRC.pm (working copy) -@@ -68,10 +68,25 @@ - my (@runpatterns, @docpatterns, @binpatterns, @srcpatterns); - my $started = 0; - my $finished = 0; -+ my $savedline = ""; - - foreach my $line (@lines) { -+ # we allow continuation lines in tlpsrc files, i.e., lines with a \ at -+ # the end -+ if ($line =~ /^(.*)\\$/) { -+ $savedline .= "$1"; -+ next; -+ } -+ if ($savedline ne "") { -+ # we are in a continuation line -+ $line = "$savedline$line"; -+ $savedline = ""; -+ } -+ - $line =~ /^\s*#/ && next; # skip comment lines - next if $line =~ /^\s*$/; # skip blank lines -+ -+ - # (blank lines are significant in tlpobj, but not tlpsrc) - - if ($line =~ /^ /) { |