diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-02-10 10:44:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-02-10 10:45:58 +0100 |
commit | 718ce84a06f18a3000d23287a2238a5a5299627a (patch) | |
tree | 5e445f530282a323b9aa75b78376209ecc3ab941 /l10ntools/scripts | |
parent | 71530f9cb01ade01505f4a5418fed28af76c8429 (diff) |
Various more l10ntools clean up
"localize" is now directly a C++ program w/o wrapper script. Also,
its command line has changed slightly, taking the source root as
explicit argument (instead of implicitly as cwd).
Diffstat (limited to 'l10ntools/scripts')
-rwxr-xr-x | l10ntools/scripts/propex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/scripts/propex b/l10ntools/scripts/propex index ba7a49d15fcf..d7135cfc0aeb 100755 --- a/l10ntools/scripts/propex +++ b/l10ntools/scripts/propex @@ -38,7 +38,7 @@ use Cwd; my %options=(); getopts("ep:r:i:o:l:", \%options); -unless ( $options{i} =~ m/en_US/ ) {exit 1;} +unless ( $options{i} =~ m/en_US/ ) {exit 0;} my $file = substr ( Cwd::abs_path($options{i}), length(Cwd::abs_path($options{r})) + 1 ); $file =~ s|/|\\|g; |