diff options
author | Cem Keylan <cem@ckyln.com> | 2019-12-10 14:05:48 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2019-12-10 14:05:48 +0300 |
commit | cb6cce5732a6e4b03160c409294d3c074d9838e9 (patch) | |
tree | 3f65b80eb0c5f15b42103245e203fc7a17ebc292 /testing/bash/build | |
parent | c23c23a281be7f52a4056ad06398c674a8c78e44 (diff) | |
download | repository-cb6cce5732a6e4b03160c409294d3c074d9838e9.tar.gz |
added bash and zsh to testing
Diffstat (limited to 'testing/bash/build')
-rwxr-xr-x | testing/bash/build | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/bash/build b/testing/bash/build new file mode 100755 index 00000000..f6362fa0 --- /dev/null +++ b/testing/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 |