Module: tools Branch: master Commit: 000d29658dd37a32c938546aeb1d34fa973f9b3e URL: http://source.winehq.org/git/tools.git/?a=commit;h=000d29658dd37a32c938546ae...
Author: Mikolaj Zalewski mikolajz@tygrys.dom Date: Sat Mar 1 14:26:57 2008 +0100
Don't create old dump files (in dumps/dll-*/)
---
scripts/ver.pl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/ver.pl b/scripts/ver.pl index b9bed30..a25b275 100755 --- a/scripts/ver.pl +++ b/scripts/ver.pl @@ -79,7 +79,7 @@ sub collapse {
$norm_fn = $filename; $norm_fn =~ s/[^a-zA-Z0-9]/-/g; -mkdir "$workdir/dumps/$norm_fn"; +#mkdir "$workdir/dumps/$norm_fn";
@file_langs = ("009:01"); #$deflangs{"009:00"} = TRUE; @@ -145,9 +145,9 @@ while (<STDIN>)
if (m/^DUMP ([0-9a-f]+)$/) { - open(DUMPOUT, ">$workdir/dumps/$norm_fn/$lang-$type-$resource"); - print DUMPOUT $1; - close(DUMPOUT); +# open(DUMPOUT, ">$workdir/dumps/$norm_fn/$lang-$type-$resource"); +# print DUMPOUT $1; +# close(DUMPOUT); next; }