diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-07-04 12:11:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-07-04 12:11:40 +0000 |
commit | 069e862ad5a119d345d3e55ad3182f41b6950be8 (patch) | |
tree | 51ec0a79d33c23fc3db3ce7f23955a0f98273f51 | |
parent | 363eb4cf7ab76141cff77cd96afaa68c489367b3 (diff) | |
download | upstream-069e862ad5a119d345d3e55ad3182f41b6950be8.tar.gz upstream-069e862ad5a119d345d3e55ad3182f41b6950be8.tar.bz2 upstream-069e862ad5a119d345d3e55ad3182f41b6950be8.zip |
scripts/abs2rel.pl: remove, it is unused
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 41510
-rwxr-xr-x | scripts/abs2rel.pl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/abs2rel.pl b/scripts/abs2rel.pl deleted file mode 100755 index 3b0de10655..0000000000 --- a/scripts/abs2rel.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env perl -# -# Copyright (C) 2007 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -use strict; -require File::Spec; - -my $source = shift @ARGV; -my $target = shift @ARGV; -my $result = File::Spec->abs2rel($source, $target); - -print "$result\n"; |