Richard Gill wrote: > cat Makefile.orig | sed 's/SUBDIRS = intl po lib doc/SUBDIRS = intl po lib/' \ > > Makefile
Nice job with the research. Just one note on the above, the use of cat and the pipe isn't necessary. Sed will dump the ouput of the adjusted file to stdout by default. sed 'expression' file > newfile. -- JH -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page