diff options
Diffstat (limited to 'source/l/ncurses/ncurses.SlackBuild')
-rwxr-xr-x | source/l/ncurses/ncurses.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/l/ncurses/ncurses.SlackBuild b/source/l/ncurses/ncurses.SlackBuild index 7c6542a3..1eebb798 100755 --- a/source/l/ncurses/ncurses.SlackBuild +++ b/source/l/ncurses/ncurses.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=ncurses VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | cut -f 2- -d - | cut -f 1,2 -d .)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -118,6 +118,10 @@ chown -R root:root . zcat $CWD/ncurses.mkhashsize.diff.gz | patch -p1 --verbose || exit 1 +# BCE is broken with 4.19.0 and 4.19.1 kernels. Revert this ASAP, but use it +# for now to paper over the problem: +zcat $CWD/linux-no-bce.diff.gz | patch -p1 --verbose || exit 1 + # Configure/build/install to package the standard ncurses libraries: ncurses_configure || exit 1 make $NUMJOBS || exit 1 |