aboutsummaryrefslogtreecommitdiffstats
path: root/check_trans.pl
diff options
context:
space:
mode:
authorJosip Rodin <joy>2001-07-23 20:57:39 +0000
committerJosip Rodin <joy>2001-07-23 20:57:39 +0000
commitb4b0525619572085ca6dc268a59c51036fb51dc5 (patch)
tree1fd0e2bfa9bc3e1f1acc8fcb5e8b5e32075b45fb /check_trans.pl
parent3f143bfd4ad9076835dfcfef5620c635bb9bf69e (diff)
just debugging stuff
CVS version numbers check_trans.pl: 1.24 -> 1.25
Diffstat (limited to 'check_trans.pl')
-rwxr-xr-xcheck_trans.pl10
1 files changed, 8 insertions, 2 deletions
diff --git a/check_trans.pl b/check_trans.pl
index 982ae21ad5b..56a739d5d76 100755
--- a/check_trans.pl
+++ b/check_trans.pl
@@ -145,6 +145,8 @@ else
$from = 'english';
$to = shift || $defaultlanguage;
+$langfrom=$from;
+
# Remove slash from end
$to =~ s%/$%%;
@@ -514,9 +516,13 @@ sub check_file {
if ($opt_d) {
STDOUT->flush;
- system("cvs -z3 log -r'$logoldr:$revision' '$oldname'") if $showlog;
+ $cvsline = "cvs -z3 log -r'$logoldr:$revision' '$oldname'";
+ warn "Running $cvsline\n" if (($opt_v) && ($showlog));
+ system($cvsline) if $showlog;
STDOUT->flush if $showlog;
- system("cvs -z3 diff -u -r '$oldr' -r '$revision' '$oldname'");
+ $cvsline = "cvs -z3 diff -u -r '$oldr' -r '$revision' '$oldname'";
+ warn "Running $cvsline\n" if $opt_v;
+ system($cvsline);
STDOUT->flush;
}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy