repo/bash/build
2021-07-13 18:33:19 +02:00

7 lines
190 B
Text
Executable file

wget https://ftp.gnu.org/gnu/bash/bash-5.1.8.tar.gz
tar -xf bash-5.1.8.tar.gz
cd bash-5.1.8
sed -e 's/$(prefix)/$(DESTDIR)$(prefix)/g' -i Makefile
./configure
make
make install DESTDIR="$1"