xinglp wrote: > try > > find -name "*.c" -o -name "*.h"|while read src; do > sed -i "s%<linux/if_ether.h>%<netinet/if_ether.h>%" $src > sed -i "s%<linux/if_tr.h>%<netinet/if_tr.h>%" $src > sed -i "s%<linux/if_fddi.h>%<netinet/if_fddi.h>%" $src > done
if_ether.h and if_fddi.h are still in /usr/include/linux. if_tr.h is only used in lib/tr.c, so the only thing that's needed to to skip the token ring build. sed -i -e '/Token/s/y$/n/' config.in yes "" | make config make make update works fine. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
