#141 closed defect (fixed)
try out a new bash installation (to avoid having to exit chroot, move files, and then re-enter chroot again)
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Book | Version: | CVS |
Severity: | normal | Keywords: | |
Cc: |
Description
static bash:
./configure --enable-static-link --prefix=$LFS/usr && make && make install && (in /usr/bin) cd $LFS/bin && ln -sf /usr/bin/bash sh (link to it in /bin)
dynamic:
./configure --prefix=/usr --with-curses --bindir=/bin && make && make install && (in /bin) exec /bin/bash ln -sf bash sh && (link /bin/sh to dynamic bash) rm /usr/bin/bash /usr/bin/bashbug
Change History (3)
comment:1 by , 23 years ago
comment:2 by , 23 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
I'll change it to the proposed commands. If there are problems with this, it'll show up in RC1 i'm sure
comment:3 by , 23 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Or much simpler, thanks to Matthias Benkmann: ./configure --prefix=/usr --bindir=/bin --with-curses && make && make install && exec bash