eth0s/toolchain/10-bash
2021-05-04 08:20:54 +08:00

11 lines
214 B
Text
Executable file

name=bash
version=5.1
source="http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz"
build() {
cd $name-$version
./configure --prefix=/tools --without-bash-malloc
make -j1
make install
ln -sv bash /tools/bin/sh
}