Opened 18 years ago

Closed 18 years ago

#90 closed task (fixed)

problem in 1.0.0rc4 7.2 Creating directories for x86_64

Reported by: Jeremy Utley Owned by: chris@…
Priority: major Milestone: CLFS Standard 1.0.0
Component: BOOK Version: CLFS Standard 1.0.0
Keywords: Cc:

Description

In the directions for creating directories, x86_64 book chapter 7.2, the following for loop is used:

for dir in /usr{,/local}; do

ln -sv share/{man,doc,info} $dir

done

This will actually attempt to create directories within the host system.

Something like this will work:

for dir in /usr{,/local}; do

ln -sv share/{man,doc,info} ${CLFS}/$dir

done

Change History (2)

comment:1 by chris@…, 18 years ago

Owner: changed from clfs-commits@… to chris@…
Status: newassigned

comment:2 by chris@…, 18 years ago

Resolution: fixed
Status: assignedclosed

Fixed in r2501.

Note: See TracTickets for help on using tickets.