diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-16 12:47:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-16 12:47:41 +0000 |
commit | 59f99f8e8bf58e35b46a816453efc6b4e2505876 (patch) | |
tree | df167ebb20b0d5aa5bed71d85b6da8f7740316c3 | |
parent | 55a5db059704df6838536910b99f106c9d5b890b (diff) | |
download | drakx-backup-do-not-use-59f99f8e8bf58e35b46a816453efc6b4e2505876.tar drakx-backup-do-not-use-59f99f8e8bf58e35b46a816453efc6b4e2505876.tar.gz drakx-backup-do-not-use-59f99f8e8bf58e35b46a816453efc6b4e2505876.tar.bz2 drakx-backup-do-not-use-59f99f8e8bf58e35b46a816453efc6b4e2505876.tar.xz drakx-backup-do-not-use-59f99f8e8bf58e35b46a816453efc6b4e2505876.zip |
add special case for c::to_utf8
-rwxr-xr-x | perl-install/verify_c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/verify_c b/perl-install/verify_c index 94fe0e174..b07355b2f 100755 --- a/perl-install/verify_c +++ b/perl-install/verify_c @@ -1,6 +1,7 @@ #!/usr/bin/perl -n /^#/ and next; +/c::to_utf8/ and next; /\bc::(\w+)/ and push @c, [ $1, $ARGV, $. ] ; eof && close ARGV; |