Opened 23 years ago

Closed 22 years ago

Last modified 22 years ago

#219 closed defect (wontfix)

make install. instructions more robust

Reported by: gerard@… Owned by: lfs-book@…
Priority: normal Milestone:
Component: Book Version: CVS
Severity: normal Keywords:
Cc:

Description

started as: From: "Matthias Benkmann" <matthias@…> To: lfs-dev@… Subject: gzip: cp instead of mv Date: Mon, 15 Oct 2001 11:05:14 +0200

Change History (8)

comment:1 by gerard@…, 23 years ago

Look at the bzip2 installation instructions for instance: cd $LFS/usr/bin && mv bzcat bunzip2 bzip2 bzip2recover $LFS/bin This will fail if $LFS/usr/bin and $LFS/bin are identical because mv does not move a file onto itself.

comment:2 by gerard@…, 23 years ago

consider

if [ ! $LFS/usr/bin -ef $LFS/bin ]; then

mv ...

fi

comment:3 by gerard@…, 22 years ago

Priority: normalhighest

comment:4 by gimli@…, 22 years ago

Isn't this a duplicate of bug #218?

comment:5 by gerard@…, 22 years ago

Not entirely, though there's a lot of overlapping. Bug #218 is just about making the commands in chapters 5 and 6 uniform, while the bug dealt with here is about updating the commands a little bit to make them more intelligent when it comes to situations where it normally would fail.

I rather have them seperated as they are now, because pretty much everybody is able to make the chapters 5 and 6 commands identical, but the 'making it more robust' requires more work/knowledge

comment:6 by gerard@…, 22 years ago

Priority: highestnormal

comment:7 by gerard@…, 22 years ago

Resolution: wontfix
Status: newclosed

Know what? This is going to be a real pain to implement, taking a lot of rewriting of Makefile files and instructions just to insert a bunch of "if-then-else" type statements. If you have a very special/weird setup, then I'm sure you can manage yourself in the first place, right?

comment:8 by markh@…, 22 years ago

ok. agreed not to implement this (certainly ATM). closing

Note: See TracTickets for help on using tickets.