diff sources/native-builds/gentoo-bootstrap/build/run-build-stages.sh @ 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/run-build-stages.sh	Sat Sep 25 13:40:04 2010 -0500
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+# Run each of the individual package build files, in order.
+
+for i in zlib ncurses python bash rsync patch file portage
+do
+  cd /home && /mnt/${i}-build || exit 1
+done