* Bobby Black <[EMAIL PROTECTED]> [2005-06-16 01:45]:
> What can I do to help?
> Revise the whole document and email me the revision with
#corrections
> after each line.
By now you'll probably be aware of this, but anyway: you
can't do stuff
like this:
5.4:
cd /src
tar -jxvf binutils-2.15.91.0.2.tar.bz2
In a makefile each line is executed by a different subshell,
so the cd
to /src won't affect the next line.Yeah, unless you do it as a whole bunch of &&'s then it won't work. However, the su and chroot commands definitely won't work in a single makefile like that. You'll have to specify su and chroot to execute some new makefile so that when it enters the new environment, those will be executed, otherwise I believe nothing after that will execute until the chroot or su environment is exited. -- Kevin Jordan <[EMAIL PROTECTED]>
<<attachment: winmail.dat>>
-- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
