On 10/12/05, Stephen Hyde <[EMAIL PROTECTED]> wrote:
>
>
>
> Hi, I have compiled my own lfs 6.1 based system but now when I come to setup
> xfree86 or xorg I cannot get it to make. The following command fails on the
> grep statement, get file not found
>
>
>
>
> sed -i -e "[EMAIL PROTECTED] <linux/config.h>@/* & */@" \
>
>     `grep -lr linux/config.h *` &&
>
> ( make World 2>&1 | tee xorg-compile.log && exit $PIPESTATUS )
> --

You're probably using single quotes (') instead of backticks (`)
try changing

     `grep -lr linux/config.h *`

to

     $(grep -lr linux/config.h *)

and avoid the confusion altogether.

IMHO backticks are evil and should be avoided at all costs, but
everyone else seems to like them, so ;)

good luck

Mike
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to