diff sources/native-builds/gentoo-bootstrap/build/bash-build @ 1252:ba951c11fb48

Refactor the gentoo bootstrap build some more. Add "build" and "files" subdirectories, split each package build into a separate file, break out reusable shell functions into functions.sh. Flow control now init chrooting into run-build-stages.sh calling the individual package scripts.
author Rob Landley <rob@landley.net>
date Sat, 25 Sep 2010 13:40:04 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sources/native-builds/gentoo-bootstrap/build/bash-build	Sat Sep 25 13:40:04 2010 -0500
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+. /mnt/functions.sh
+
+# Portage uses bash ~= regex matches, which were introduced in bash 3.
+
+set_titlebar "Bash3" && cp -sfR /mnt/bash bash && cd bash &&
+
+./configure --enable-cond-regexp --disable-nls --prefix=/usr &&
+make -j $CPUS &&
+make install &&
+
+cd .. && rm -rf bash || exit 1