annotate sources/native-builds/bootstrap-skeleton/files/run-build-stages.sh @ 1269:7a60afa1846c

More tweaks to bootstrap-skeleton, implement the first half of lfs-bootstrap for Linux From Scratch 6.7 against the new infrastructure, and tweak gentoo build to stay current with bootstrap-skeleton changes. (Now more common infrastructure, and requires package-list file.)
author Rob Landley <rob@landley.net>
date Sun, 24 Oct 2010 04:17:15 -0500
parents c264495fbf21
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1256
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 #!/bin/sh
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
2
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 # Run each of the individual package build files, in order.
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
4
1269
7a60afa1846c More tweaks to bootstrap-skeleton, implement the first half of lfs-bootstrap for Linux From Scratch 6.7 against the new infrastructure, and tweak gentoo build to stay current with bootstrap-skeleton changes. (Now more common infrastructure, and requires package-list file.)
Rob Landley <rob@landley.net>
parents: 1258
diff changeset
5 [ -z "$FILTER" ] || FILTER="/$FILTER/d"
7a60afa1846c More tweaks to bootstrap-skeleton, implement the first half of lfs-bootstrap for Linux From Scratch 6.7 against the new infrastructure, and tweak gentoo build to stay current with bootstrap-skeleton changes. (Now more common infrastructure, and requires package-list file.)
Rob Landley <rob@landley.net>
parents: 1258
diff changeset
6 for i in $(sed -r -e "$FILTER" -e "s@#.*@@" /mnt/package-list)
1256
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 do
1258
c264495fbf21 Update the common code, use "files" directory instead of build for subdir.
Rob Landley <rob@landley.net>
parents: 1256
diff changeset
8 /mnt/build-one-package.sh "$i" || exit 1
1256
df70740df1a5 Add generic native-build infastructure.
Rob Landley <rob@landley.net>
parents:
diff changeset
9 done