view sources/control-images/lfs-bootstrap/mnt/build/kbd.sh @ 1301:42fd798bbe3e

Make more of the LFS build actually build.
author Rob Landley <rob@landley.net>
date Mon, 22 Nov 2010 17:53:17 -0600
parents c054a7a36cd9
children
line wrap: on
line source

#!/bin/sh

./configure --prefix=/usr --datadir=/lib/kbd --disable-nls &&
make -j $CPUS &&
make install || exit 1

if [ ! -z "$DOCS" ]
then
  mkdir /usr/share/doc/kbd &&
  cp -R doc/* /usr/share/doc/kbd
fi