diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-08-12 14:34:39 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-08-12 14:34:39 +0000 |
commit | d652a4b38a266284266d0b3aa957d2ac5bd8ec82 (patch) | |
tree | b20c1d4ec5ad4cdb1ed12b7f5d196b3cead16d94 /package | |
parent | 4163894f0011cd4b0b6a27e617ace2c2caa8f2d4 (diff) | |
download | upstream-d652a4b38a266284266d0b3aa957d2ac5bd8ec82.tar.gz upstream-d652a4b38a266284266d0b3aa957d2ac5bd8ec82.tar.bz2 upstream-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')
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rw-r--r-- | package/base-files/files/etc/profile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index be10e2e958..bae3c79e25 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=78 +PKG_RELEASE:=79 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=opkg/host 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 $*; } |