view images/gentoo-bootstrap/mnt/build/zlib.sh @ 0:bcd2e358d57f

Start by copying the existing control image building infrastructure from Aboriginal Linux, and shuffling the layout around a bit.
author Rob Landley <rob@landley.net>
date Sun, 03 Jul 2011 17:23:26 -0500
parents
children
line wrap: on
line source

#!/bin/sh

# 1.2.5 accidentally shipped the Makefile, then configure tries to
# modify it in place, which fails if the filesystem is read only.
# The fix is to remove it before configuring.

rm Makefile && 
./configure --prefix=/usr &&
make -j $CPUS &&
make install