summaryrefslogtreecommitdiffstats
path: root/perl-install/verify_c
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/verify_c')
-rwxr-xr-xperl-install/verify_c14
1 files changed, 0 insertions, 14 deletions
diff --git a/perl-install/verify_c b/perl-install/verify_c
deleted file mode 100755
index a306348dd..000000000
--- a/perl-install/verify_c
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl -n
-
-/^#/ and next;
-/c::(\w+)/ and push @c, [ $1, $ARGV, $. ] ;
-
-eof && close ARGV;
-
-END {
- $_ = join '', `cat c/c.xs.pm`;
- foreach $c (@c) {
- /$c->[0]/ or $err = print "$c->[1]:$c->[2]: $c->[0] not in c.xs\n";
- }
- exit $err;
-}