Opened 2 years ago

Closed 2 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:1 by Bruce Dubbs, 2 years ago

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

Last edited 2 years ago by Bruce Dubbs (previous) (diff)

comment:2 by Bruce Dubbs, 2 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.