Opened 17 years ago
Closed 17 years ago
#2403 closed task (fixed)
Correction to Heimdal instructions
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | 6.3 |
Component: | BOOK | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description
In the first block of commands right after the compilation, there are a number of commands to rename various headers and static libs...
mv -v /usr/include/fnmatch.h /usr/include/fnmatch.h.glibc && mv -v /usr/include/glob.h /usr/include/glob.h.glibc &&
mv -v /usr/include/ss/ss.h /usr/include/ss/ss.h.e2fsprogs && mv -v /usr/lib/libss.a /usr/lib/libss.a.e2fsprogs && mv -v /usr/lib/libss.so /usr/lib/libss.so.e2fsprogs && if [ -f /usr/lib/libss.la ]; then
mv -v /usr/lib/libss.la /usr/lib/libss.la.e2fsprogs
done
This does not work because "done" should actually be "fi".
Note:
See TracTickets
for help on using tickets.
The incorrect command is actually not required so it has been removed. Examination of all the remaining commands shows no noticeable syntax errors.