From 938cb1f54f0174a5994345e4dc49888c614db430 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Tue, 10 Dec 2019 17:44:09 +0300 Subject: move shells to extra --- extra/bash/build | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 extra/bash/build (limited to 'extra/bash/build') diff --git a/extra/bash/build b/extra/bash/build new file mode 100755 index 00000000..f6362fa0 --- /dev/null +++ b/extra/bash/build @@ -0,0 +1,16 @@ +#!/bin/sh -e + +for patch in bash50-0??; do + patch -p0 < "$patch" +done + +./configure \ + --prefix=/usr \ + --without-bash-malloc \ + --without-installed-readline \ + --disable-nls + +export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS" + +make +make DESTDIR="$1" install -- cgit v1.2.3