When I compile the glibc (lfs v.6.0), first pass, after configure, "make" gives me error and complains of missing delimiter (") in the first few lines of file mnt/lfs/sources/glibc-build/csu/version-info.h.
It was like this:
Code:
"Compiled on a Linux >>2.6.8-2-686<< system on 2005-05-03.
"
"Available extensions:
"
" GNU libio by Per Bothner\n"
" crypt add-on version 2.1 by Michael Glad and others\n"
" Native POSIX Threads Library by Ulrich Drepper et al\n"
" BIND-8.2.3-T5B\n"
" NIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n"
So I manually deleted the newlines to make it like this:
Code:
"Compiled on a Linux >>2.6.8-2-686<< system on 2005-05-03."
"Available extensions:"
" GNU libio by Per Bothner\n"
" crypt add-on version 2.1 by Michael Glad and others\n"
" Native POSIX Threads Library by Ulrich Drepper et al\n"
" BIND-8.2.3-T5B\n"
" NIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n"
And it compiles fine.
I want to list it here just in case someone else has the same problem. :-))
By the way, anyone has any idea where that fault might have come from?
Thanks a lot,
Krap