aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-08-12 14:34:39 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-08-12 14:34:39 +0000
commitd652a4b38a266284266d0b3aa957d2ac5bd8ec82 (patch)
treeb20c1d4ec5ad4cdb1ed12b7f5d196b3cead16d94 /package/base-files/files/etc
parent4163894f0011cd4b0b6a27e617ace2c2caa8f2d4 (diff)
downloadmaster-187ad058-d652a4b38a266284266d0b3aa957d2ac5bd8ec82.tar.gz
master-187ad058-d652a4b38a266284266d0b3aa957d2ac5bd8ec82.tar.bz2
master-187ad058-d652a4b38a266284266d0b3aa957d2ac5bd8ec82.zip
[package] base-files: fix arp() procedure to properly detect /usr/bin/arp
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27965 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc')
-rw-r--r--package/base-files/files/etc/profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/profile b/package/base-files/files/etc/profile
index 1f680655f7..4bdfa5787a 100644
--- a/package/base-files/files/etc/profile
+++ b/package/base-files/files/etc/profile
@@ -11,5 +11,5 @@ export PS1='\u@\h:\w\$ '
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
-[ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
+[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }