summaryrefslogtreecommitdiff
path: root/Master/Tools/Tpm.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-02-06 00:12:54 +0000
committerKarl Berry <karl@freefriends.org>2006-02-06 00:12:54 +0000
commit535dd1c4401bbf2711e1ce0d5e9c50ffc6f9004b (patch)
treec8af3f859a53c3a34abe9855e9321ba22d50e024 /Master/Tools/Tpm.pm
parentdd789d6487e7457dc3d694ebc434af129bb3fd33 (diff)
* Master/Tools/Tpm.pm (IgnoredFiles): remove bin dirs,
add .svn. * Master/Tools/FileUtils.pm (globexpand_push): respect IgnoredFiles. (backtrace): debugging routine. * Master/Tools/tpm-factory.pl (collect_files): debugging. * Master/Tools/update-tpm: allow --debug as an option. git-svn-id: svn://tug.org/texlive/trunk@1497 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/Tools/Tpm.pm')
-rw-r--r--Master/Tools/Tpm.pm13
1 files changed, 12 insertions, 1 deletions
diff --git a/Master/Tools/Tpm.pm b/Master/Tools/Tpm.pm
index d1ce97403d7..9720770a47c 100644
--- a/Master/Tools/Tpm.pm
+++ b/Master/Tools/Tpm.pm
@@ -101,7 +101,18 @@ $Editor = ($^O =~ m/win32/i ? "notepad": "vi");
"TLCore/bin-windvi"
);
-$IgnoredFiles = "(bin/i386-freebsd|bin/i386-openbsd|bin/i386-solaris|bin/mips-irix|bin/powerpc-aix|bin/powerpc-darwin|bin/sparc-solaris|bin/win32/TeXLive.exe|texmf/tpm/(collection-binaries|texlive|xemtex|scheme-.*|.*-static)\.tpm|texmf(-doc|-dist)?/(ls-R|aliases|lists/.*|README|tpm/tpm.dtd)|source/.*)";
+# this list is not up to date, therefore I think it is not needed.
+# . "bin/i386-freebsd|bin/i386-openbsd|bin/i386-solaris|bin/mips-irix"
+# . "|bin/powerpc-aix|bin/powerpc-darwin|bin/sparc-solaris"
+
+# used both to ignore whole tpm's (?) and individual files?
+# must match whole path
+$IgnoredFiles = "("
+ . 'source/.*'
+ . '|texmf/tpm/(collection-binaries|texlive|xemtex|scheme-.*|.*-static)\.tpm'
+ . '|texmf(-doc|-dist)?/(ls-R|aliases|lists/.*|README|tpm/tpm.dtd)'
+ . '|.*/\.svn.*'
+ . ")";
# The so-called engines
my @engines = ("aleph", "enctex", "eomega", "metafont", "metapost", "omega", "pdftex", "pdfetex", "tex", "vtex",