blob: f6362fa0c66159e28a600435123caa7f7d4471d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|