#!/bin/sh
# precompile_textutils

cd $LFS/usr/src
tar xfj textutils*.tar.bz2
cd textutils*

./configure --prefix=$LFS/usr --disable-nls &&
make LDFLAGS=-static &&
make install &&
mv $LFS/usr/bin/cat $LFS/usr/bin/head $LFS/bin
