From: Felix Fietkau Date: Fri, 4 Jul 2014 12:11:40 +0000 (+0000) Subject: scripts/abs2rel.pl: remove, it is unused X-Git-Tag: reboot~6655 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=069e862ad5a119d345d3e55ad3182f41b6950be8;p=openwrt%2Fopenwrt.git scripts/abs2rel.pl: remove, it is unused Signed-off-by: Felix Fietkau SVN-Revision: 41510 --- 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";