diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 12:26:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 12:26:16 +0000 |
commit | 126777bc019a54afb4ec51299f2cf9d2841698aa (patch) | |
tree | 97f76e571902ead55ba138f1156a4b4f00b9b779 /perl-install/verify_c | |
parent | f1f67448efc714873378dfeb8279fae68054a90a (diff) | |
download | drakx-126777bc019a54afb4ec51299f2cf9d2841698aa.tar drakx-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.gz drakx-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.bz2 drakx-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.xz drakx-126777bc019a54afb4ec51299f2cf9d2841698aa.zip |
re-sync after the big svn loss
Diffstat (limited to 'perl-install/verify_c')
-rwxr-xr-x | perl-install/verify_c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/perl-install/verify_c b/perl-install/verify_c deleted file mode 100755 index 80d7394e2..000000000 --- a/perl-install/verify_c +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl -n - -/^#/ and next; -/c::to_utf8/ || /c::from_utf8/ and next; -/\bc::(\w+)/ and push @c, [ $1, $ARGV, $. ] ; - -eof && close ARGV; - -END { - $_ = join '', `cat c/stuff.xs.pl`; - foreach $c (@c) { - /$c->[0]/ or $err = print "$c->[1]:$c->[2]: $c->[0] not in c.xs\n"; - } - exit $err; -} |