diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-30 12:26:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-30 12:26:03 +0000 |
commit | 19ea74d8e4b56f0c628f56a7f5527d877f9c61dc (patch) | |
tree | 24db426a1c62c91c31db2c693b673a2e28f9c928 /perl-install | |
parent | 65f2e65947b4b5df9e7da634a9191c40e4dfb19a (diff) | |
download | drakx-19ea74d8e4b56f0c628f56a7f5527d877f9c61dc.tar drakx-19ea74d8e4b56f0c628f56a7f5527d877f9c61dc.tar.gz drakx-19ea74d8e4b56f0c628f56a7f5527d877f9c61dc.tar.bz2 drakx-19ea74d8e4b56f0c628f56a7f5527d877f9c61dc.tar.xz drakx-19ea74d8e4b56f0c628f56a7f5527d877f9c61dc.zip |
ignore c::from_utf8
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/verify_c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/verify_c b/perl-install/verify_c index 3e3dbdc1b..80d7394e2 100755 --- a/perl-install/verify_c +++ b/perl-install/verify_c @@ -1,7 +1,7 @@ #!/usr/bin/perl -n /^#/ and next; -/c::to_utf8/ and next; +/c::to_utf8/ || /c::from_utf8/ and next; /\bc::(\w+)/ and push @c, [ $1, $ARGV, $. ] ; eof && close ARGV; |