diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-18 20:15:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-18 20:16:29 +0000 |
commit | 6ea608c70aadb37a5e55efb60dd389020a9e052a (patch) | |
tree | c7efd04b143c16484c989e7f98ec2f8553214866 /main/ed | |
parent | afcc66154c19126e5a2bd757465bb602f69db1bf (diff) | |
download | aports-6ea608c70aadb37a5e55efb60dd389020a9e052a.tar.bz2 aports-6ea608c70aadb37a5e55efb60dd389020a9e052a.tar.xz |
main/ed: instal in /bin
The location needs to correspond with busybox.
Diffstat (limited to 'main/ed')
-rw-r--r-- | main/ed/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/ed/APKBUILD b/main/ed/APKBUILD index 7079ef1167..c681a6820f 100644 --- a/main/ed/APKBUILD +++ b/main/ed/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Breno Leitao <breno.leitao@gmail.com> pkgname=ed pkgver=1.14.2 -pkgrel=0 +pkgrel=1 pkgdesc="GNU ed is a line-oriented text editor. It is used to create, display, modify and otherwise manipulate text files" url="https://www.gnu.org/software/ed/" arch="all" @@ -15,11 +15,12 @@ builddir=$srcdir/$pkgname-$pkgver build() { cd "$builddir" - + # bindir needs correspond with busybox location ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ + --bindir=/bin \ --mandir=/usr/share/man make all } |