comparison sources/native-builds/gentoo-bootstrap/build/python-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
comparison
equal deleted inserted replaced
1251:204238871b7c 1252:ba951c11fb48
1 #!/bin/sh
2
3 . /mnt/functions.sh
4
5 set_titlebar "Python" && cp -sfR /mnt/Python python && cd python &&
6
7 ./configure --prefix=/usr &&
8 make -j $CPUS &&
9 make install &&
10
11 cd .. && rm -rf python || exit 1