view images/gentoo-bootstrap/mnt/build/zlib.sh @ 40:ef471ef37665 draft default tip

Yank reliance on ash.
author Rob Landley <rob@landley.net>
date Sat, 18 Jul 2015 01:39:24 -0500
parents bcd2e358d57f
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