Opened 3 years ago
Closed 3 years ago
#16218 closed defect (fixed)
fcron man pages report incorrect locations for various files
Reported by: | Joe Locash | Owned by: | blfs-book |
---|---|---|---|
Priority: | normal | Milestone: | 11.2 |
Component: | BOOK | Version: | git |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
The man pages for fcron are hardcoded to use /usr/local/* for various files. Since BLFS changes the install prefix/sysconfdir of configure this find/sed will fix the man pages to match that:
find /usr/share/man -name fcron\* -exec sed -i 's|/usr/local||g' {} \;
Change History (2)
comment:2 by , 3 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed in commit 64755c7557504384f17c369d11be600a94b65dbe
Note:
See TracTickets
for help on using tickets.
Right idea, wrong place. It should be done at the beginning before configure.
find doc -exec sed -i 's:/usr/local::g' {} \;
Reformatted for Trac