From eeaf486d97cea402bb67d61d3162a96af984cecd Mon Sep 17 00:00:00 2001
From: Florian Fainelli <florian@openwrt.org>
Date: Mon, 14 May 2007 18:19:07 +0000
Subject: Prefer real executables when available (#1296)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7232 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 package/base-files/files/etc/profile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'package/base-files')

diff --git a/package/base-files/files/etc/profile b/package/base-files/files/etc/profile
index 8aac3b7527..5cb83c9355 100644
--- a/package/base-files/files/etc/profile
+++ b/package/base-files/files/etc/profile
@@ -5,10 +5,10 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
 export HOME=/tmp
 export PS1='\u@\h:\w\$ '
 
-alias more=less
-[ -x /usr/bin/vim ] || alias vim=vi
+[ -x /bin/more ] || alias more=less
+[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
 
 [ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
 
-arp() { cat /proc/net/arp; }
+[ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
 [ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
-- 
cgit v1.2.3