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: | |
---|---|---|---|
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 , 18 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in r2501.