diff options
author | Daniel Sabogal <dsabogalcc@gmail.com> | 2018-02-26 00:29:41 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-02-27 20:55:46 +0000 |
commit | 721bc20afa26d524e6801d7ac63101ff3f723d79 (patch) | |
tree | b2450dee9f66cf652306081077efdfbc88bc559a /main/ncurses | |
parent | 6fd19cda4a90a0fad186d2c91a5a4acc9463acf9 (diff) | |
download | aports-721bc20afa26d524e6801d7ac63101ff3f723d79.tar.bz2 aports-721bc20afa26d524e6801d7ac63101ff3f723d79.tar.xz |
main/curses: use abuild strip only
Fails to cross-compile:
strip: Unable to recognise the format of the input file `[...]/aports/main/ncurses/pkg/ncurses/usr/bin/tic'
install: strip: No such file or directory
make[1]: *** [Makefile:201: install.progs] Error 1
Diffstat (limited to 'main/ncurses')
-rw-r--r-- | main/ncurses/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/ncurses/APKBUILD b/main/ncurses/APKBUILD index 604bd39377..541010af1c 100644 --- a/main/ncurses/APKBUILD +++ b/main/ncurses/APKBUILD @@ -2,7 +2,7 @@ pkgname=ncurses pkgver=6.0_p20180121 _ver=${pkgver%_p*}-${pkgver#*_p} -pkgrel=0 +pkgrel=1 pkgdesc="Console display library" url="https://www.gnu.org/software/ncurses/" arch="all" @@ -33,6 +33,7 @@ build() { --without-tests \ --disable-termcap \ --disable-rpath-hack \ + --disable-stripping \ --with-pkg-config-libdir=/usr/lib/pkgconfig \ --without-cxx-binding \ --with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" \ |