diff options
Diffstat (limited to 'insidechroot.sh')
-rw-r--r-- | insidechroot.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 1bb0732..c6ce796 100644 --- a/insidechroot.sh +++ b/insidechroot.sh @@ -149,4 +149,19 @@ EOF cd /sources || exit 1 + # Chapter 7 + printf "%b" "\n${IWHT}============ ${IGRN}Building ${IYLW}Chapter 7${IWHT} \ +============${RST}\n" + + for package in libstdc++ gettext bison perl python texinfo util-linux; do + source packageinstall.sh 7 $package + retval=$? + if [[ "${retval}" -ne 0 ]]; then + exit 1 + fi + done + + exit 7 +else + printf "%b" "Do Chapter 8, 9 and 10 stuff here.\n" fi |