diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-21 12:45:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-21 12:45:02 +0000 |
commit | acf62076a6e6d8ec91bf8785401d2bd88653cba9 (patch) | |
tree | 2b4883baf1c91e92859fe987ffaa9826ecd5c098 /main/busybox | |
parent | a69ec4e9ecca8a6aa9244e9528df1d2a201a64ae (diff) | |
download | aports-acf62076a6e6d8ec91bf8785401d2bd88653cba9.tar.bz2 aports-acf62076a6e6d8ec91bf8785401d2bd88653cba9.tar.xz |
main/busybox: fix path to /usr/bin/vi and /sbin/ip
Diffstat (limited to 'main/busybox')
-rw-r--r-- | main/busybox/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD index cd53d073a4..025806628f 100644 --- a/main/busybox/APKBUILD +++ b/main/busybox/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=busybox pkgver=1.17.0 -pkgrel=2 +pkgrel=3 pkgdesc="Size optimized toolbox of many common UNIX utilities" url=http://busybox.net license="GPL-2" @@ -33,9 +33,9 @@ prepare() { fi done -# sed -i -e 's/(ip, _BB_DIR_BIN/(ip, _BB_DIR_SBIN/' \ -# -e 's/(vi, _BB_DIR_BIN/(vi, _BB_DIR_USR_BIN/' \ -# include/applets.h || return 1 + sed -i -e 's/(ip, _BB_DIR_BIN/(ip, _BB_DIR_SBIN/' \ + -e 's/(vi, _BB_DIR_BIN/(vi, _BB_DIR_USR_BIN/' \ + include/applets.src.h || return 1 } build() { |