summaryrefslogtreecommitdiffstats
path: root/contrib/amd/m4/chop-aclocal.pl
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2007-12-05 14:20:32 +0000
committerobrien <obrien@FreeBSD.org>2007-12-05 14:20:32 +0000
commitc906fa6ae15f8d6fbece583bacd2692ade4abee5 (patch)
tree1396a979d38a34e4e4cb3ccdb882a1b8b73c1ae9 /contrib/amd/m4/chop-aclocal.pl
parentee5d1c23afb70f7590e56bfad52645822f60d673 (diff)
downloadFreeBSD-src-c906fa6ae15f8d6fbece583bacd2692ade4abee5.zip
FreeBSD-src-c906fa6ae15f8d6fbece583bacd2692ade4abee5.tar.gz
This commit was generated by cvs2svn to compensate for changes in r174289,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/amd/m4/chop-aclocal.pl')
-rwxr-xr-xcontrib/amd/m4/chop-aclocal.pl19
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/amd/m4/chop-aclocal.pl b/contrib/amd/m4/chop-aclocal.pl
deleted file mode 100755
index 2bf6b75..0000000
--- a/contrib/amd/m4/chop-aclocal.pl
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/perl -w
-
-$seq = 1;
-$file = "";
-$file = sprintf("tmp/%02d.m4", $seq);
-open(FILE, ">$file") || die "cannot open \"$file\": $!";
-printf(STDOUT "FILE: $file\n");
-while (<>) {
- if (/^$/) {
- close(FILE);
- $seq++;
- $file = sprintf("tmp/%02d.m4", $seq);
- open(FILE, ">$file") || die "cannot open \"$file\": $!";
- printf(STDOUT "FILE: $file\n");
- next;
- }
- printf FILE;
-}
-close(FILE);
OpenPOWER on IntegriCloud