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 | 0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d (patch) | |
tree | 3c5749ad2fd8eef8971ba03ad27751296c0c2f4e | |
parent | a6f2a0aab3f81f87f99bfd8bf90cdaef927f3717 (diff) | |
download | upstream-0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d.tar.gz upstream-0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d.tar.bz2 upstream-0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d.zip |
scripts/abs2rel.pl: remove, it is unused
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41510 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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"; |