diff sources/control-images/lfs-bootstrap/mnt/build/sed.sh @ 1275:a4cb2ed0a551

Move sources/native-builds to sources/control-images, so the naming is consistent.
author Rob Landley <rob@landley.net>
date Sun, 07 Nov 2010 15:55:26 -0600
parents sources/native-builds/lfs-bootstrap/mnt/build/sed.sh@7a60afa1846c
children c054a7a36cd9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sources/control-images/lfs-bootstrap/mnt/build/sed.sh	Sun Nov 07 15:55:26 2010 -0600
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+./configure --prefix=/usr --bindir=/bin --htmldir=/usr/share/doc/sed-4.2.1 &&
+make -j $CPUS || exit 1
+
+if [ ! -z "$DOCS" ]
+then
+  make html &&
+  make -C doc install-html || exit 1
+fi
+
+if [ ! -z "$CHECK" ]
+then
+  make check || exit 1
+fi
+
+make install