summaryrefslogtreecommitdiffstats
path: root/util/dirname.pl
diff options
context:
space:
mode:
Diffstat (limited to 'util/dirname.pl')
-rw-r--r--util/dirname.pl24
1 files changed, 0 insertions, 24 deletions
diff --git a/util/dirname.pl b/util/dirname.pl
deleted file mode 100644
index 9838e19906..0000000000
--- a/util/dirname.pl
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /usr/bin/env perl
-# Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
-#
-# Licensed under the OpenSSL license (the "License"). You may not use
-# this file except in compliance with the License. You can obtain a copy
-# in the file LICENSE in the source distribution or at
-# https://www.openssl.org/source/license.html
-
-if ($#ARGV < 0) {
- die "dirname.pl: too few arguments\n";
-} elsif ($#ARGV > 0) {
- die "dirname.pl: too many arguments\n";
-}
-
-my $d = $ARGV[0];
-
-if ($d =~ m|.*/.*|) {
- $d =~ s|/[^/]*$||;
-} else {
- $d = ".";
-}
-
-print $d,"\n";
-exit(0);