summaryrefslogtreecommitdiff
path: root/build/bin/noulf
diff options
context:
space:
mode:
Diffstat (limited to 'build/bin/noulf')
-rwxr-xr-xbuild/bin/noulf29
1 files changed, 0 insertions, 29 deletions
diff --git a/build/bin/noulf b/build/bin/noulf
deleted file mode 100755
index 3bb98ec85662..000000000000
--- a/build/bin/noulf
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-
-# dummy 'ulfex' / transex3/source/lngex.cxx equivalent, cf unitools.mk
-
-my ($in, $out);
-my $ignored = '';
-while (my $arg = shift @ARGV) {
- if ($arg eq '-i') {
- $in = shift @ARGV;
- } elsif ($arg eq '-o') {
- $out = shift @ARGV;
- } else {
- $ignored .= " $arg";
- }
-}
-
-print "noulf: in $in, out $out, ignored args: '$ignored'\n";
-
-# copy it straight ...
-my ($infile, $outfile);
-open $infile, "$in" || die "can't open $in: $!";
-open $outfile, ">$out" || die "can't open $out: $!";
-while (<$infile>) {
- print $outfile $_;
-}
-close $outfile;
-close ($infile);