aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-07-04 12:11:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-07-04 12:11:40 +0000
commit0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d (patch)
tree3c5749ad2fd8eef8971ba03ad27751296c0c2f4e /scripts
parenta6f2a0aab3f81f87f99bfd8bf90cdaef927f3717 (diff)
downloadmaster-187ad058-0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d.tar.gz
master-187ad058-0f1f2c383a01005e5e3aedbe4382f1e75efa9e0d.tar.bz2
master-187ad058-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
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/abs2rel.pl16
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";