summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util/arx.pl
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2012-01-05 22:59:12 +0000
committercvs2svn <admin@example.com>2012-01-05 22:59:12 +0000
commitd339461e47f150ab9acc413b95839c69acbd6552 (patch)
tree722eb2e4544293f6ebcb465aab7752cfce48c9a4 /src/lib/libcrypto/util/arx.pl
parent767ddad28eb81a703656eed39ed362c83ac9e20a (diff)
downloadopenbsd-d339461e47f150ab9acc413b95839c69acbd6552.tar.gz
openbsd-d339461e47f150ab9acc413b95839c69acbd6552.tar.bz2
openbsd-d339461e47f150ab9acc413b95839c69acbd6552.zip
This commit was manufactured by cvs2git to create tag 'openssl_1_0_0_f'.openssl_1_0_0_f
Diffstat (limited to 'src/lib/libcrypto/util/arx.pl')
-rw-r--r--src/lib/libcrypto/util/arx.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/libcrypto/util/arx.pl b/src/lib/libcrypto/util/arx.pl
deleted file mode 100644
index ce62625c33..0000000000
--- a/src/lib/libcrypto/util/arx.pl
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/perl
2
3# Simple perl script to wrap round "ar" program and exclude any
4# object files in the environment variable EXCL_OBJ
5
6map { s/^.*\/([^\/]*)$/$1/ ; $EXCL{$_} = 1} split(' ', $ENV{EXCL_OBJ});
7
8#my @ks = keys %EXCL;
9#print STDERR "Excluding: @ks \n";
10
11my @ARGS = grep { !exists $EXCL{$_} } @ARGV;
12
13system @ARGS;
14
15exit $? >> 8;