comparison sources/native-builds/gentoo-bootstrap/mnt/build/zlib.sh @ 1259:3ffcb56847e3

Redo gentoo-boostrap on top of bootstrap-skeleton.
author Rob Landley <rob@landley.net>
date Thu, 07 Oct 2010 23:52:23 -0500
parents
children
comparison
equal deleted inserted replaced
1258:c264495fbf21 1259:3ffcb56847e3
1 #!/bin/sh
2
3 # 1.2.5 accidentally shipped the Makefile, then configure tries to
4 # modify it in place, which fails if the filesystem is read only.
5 # The fix is to remove it before configuring.
6
7 rm Makefile &&
8 ./configure --prefix=/usr &&
9 make -j $CPUS &&
10 make install