LFSMake & glibc

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: RodRoarkrod@sunsetsystems.com
Date:  
Subject: LFSMake & glibc
My mistake. DIR_APP is an abbreviation that I defined in my working
version of the Makefile and is not yet in the released version.
Substitute "$(DIR_SRC)/$(THISAPP)" where you see "$(DIR_APP)".

-- Rod
http://www.sunsetsystems.com/

On Sun, 01 Oct 2000, Clayton Stapleton wrote:
> Hi;
> The added lines did the trick, had to comment out the first added line
> as the patch is not zipped it is just a regular file.
>
> Am having another problem with this. Get the following error:
> "/bin/sh: cd: $: No such file or directory
> make: *** [/mnt/lfs/usr/installinfo/glibc-2.1.3] Error 1"
>
> Figured it had something to do with the TIMEZONE as I had not
> changed it. Looked at ManDrakes /etc/localtime and /usr/share/zoneinfo
> and they both end up with binaries and didn't know if this is what is
> needed. So entered TIMEZOME = America/Phoenix/MST but this had
> the same effect. Any help would be appricated.
>
> TIA
> Clay Stapleton
>
> > Sorry you're having trouble.
> >
> > In the Makefile you'll find these lines:
> >
> > $(OK_GLIBC_1) : THISAPP = glibc-$(GLIBC)
> > $(OK_GLIBC_1) : $(OK_MAIN)
> >     @$(PREBUILD)
> >     @rm -rf $(DIR_BUILD)

> >
> > Immediately after them, try inserting the following:
> >
> >     @cd $(DIR_SRC) && cp $(DIR_DL)/glibc-$(GLIBC).patch.gz . && gunzip glibc-$(GLIBC).patch.gz
> >     @cd $(DIR_APP) && patch -Np1 -i ../glibc-$(GLIBC).patch
> >     @rm -f $(DIR_SRC)/glibc-$(GLIBC).patch

> >
> > Note that the first character of each line must be a tab character.
> >
> > -- Rod