summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util/arx.pl
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2011-11-03 02:32:25 +0000
committercvs2svn <admin@example.com>2011-11-03 02:32:25 +0000
commit279182cf9975981f7d3c660b5cafa392216fcd94 (patch)
tree3ee21f04641147b64fb808a991bfcf16598fbe1f /src/lib/libcrypto/util/arx.pl
parentbd081fc6d9aca84ff3cbde2c626c28668f73d967 (diff)
downloadopenbsd-openssl_1_0_0_e.tar.gz
openbsd-openssl_1_0_0_e.tar.bz2
openbsd-openssl_1_0_0_e.zip
This commit was manufactured by cvs2git to create tag 'openssl_1_0_0_e'.openssl_1_0_0_e
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;