On Sun, Sep 10, 2006 at 10:44:47AM -0500, John Reese wrote:
> Here is the error I received consistently through these attempts:
> 
> END { printf "sysdep-subdirs =%s\n", subdirs;           \
>       printf "sysdep-inhibit-subdirs =%s\n", inhibit;   \
>       print "sysd-dirs-done = t" }'                     \
>        /dev/null nptl/sysdeps/pthread/Subdirs sysdeps/unix/inet/Subdirs
> sysdeps/unix/Subdirs > /glibc-build/sysd-dirs-tmp
> /bin/sh: BEGIN { subdirs = ""; inhibit = "" };                   /^#/ {
> next };                                               /^[^-]/ { subdirs
> = subdirs " " $0 };                        /^-/ { inhibit = inhibit " "
> substr($0, 2) };                END { printf "sysdep-subdirs =%s\n",
> subdirs;                printf "sysdep-inhibit-subdirs =%s\n", inhibit;
>      print "sysd-dirs-done = t" }: No such file or directory
> make[1]: *** [/glibc-build/sysd-dirs] Error 127
> make[1]: Leaving directory `/sources/glibc-2.3.6'
> make: *** [all] Error 2

 My first thought is that this almost looks like gibberish, but
BEGIN and END are awk keywords.

 My second thought is that Error 127 might mean a missing program.

 So, check your install of gawk from chapter 5 - does the
/tools/bin/awk symlink exist ?  If it does, what is /tools/bin/gawk
link against ? [ ldd /tools/bin/gawk, or readelf /tools/bin/gawk |
grep interpreter ]

Ken
-- 
das eine Mal als Tragödie, das andere Mal als Farce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to