mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-15 15:55:24 +01:00
Add bash 2.05b
This commit is contained in:
parent
e0d72a85b2
commit
c1454a5db6
12 changed files with 293 additions and 2 deletions
31
sysa/bash-2.05b.kaem
Executable file
31
sysa/bash-2.05b.kaem
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
# Variables
|
||||
bindir=/after/bin
|
||||
|
||||
catm config.h
|
||||
catm include/version.h
|
||||
catm include/pipesize.h
|
||||
|
||||
# Patch
|
||||
patch -Np0 -i ../patches/bash-2.05b/mes-libc.patch
|
||||
patch -Np0 -i ../patches/bash-2.05b/tinycc.patch
|
||||
patch -Np0 -i ../patches/bash-2.05b/missing-defines.patch
|
||||
patch -Np0 -i ../patches/bash-2.05b/locale.patch
|
||||
patch -Np0 -i ../patches/bash-2.05b/dev-tty.patch
|
||||
|
||||
# Compile
|
||||
cp ../bash-2.05b.mk Makefile
|
||||
cp ../bash-2.05b-builtins.mk builtins/Makefile
|
||||
cp ../bash-2.05b-common.mk common.mk
|
||||
make mkbuiltins
|
||||
cd builtins
|
||||
make libbuiltins.a
|
||||
cd ..
|
||||
make
|
||||
|
||||
# Install
|
||||
cp bash /after/bin/
|
||||
chmod 755 /after/bin/bash
|
||||
Loading…
Add table
Add a link
Reference in a new issue