#156 closed defect (fixed)

build system installs at the top level man dir, and not in the appropriate sections

Reported by: blueness Owned by: edsiper
Priority: major Milestone:
Component: Unspecified Version:
Keywords: Cc:

Description

The configure script installs the man pages banana.1, monkey.1 and monkey-api.3 at the top level man dir, /usr/share/man and not in the appropriate categories: eg. /usr/share/man/man1/banana.1

See proton.pathname.com/fhs/pub/fhs-2.3.html/ section titled "/usr/share/man : Manual pages"

The fix is pretty straight forward, you just have to split up line 332 of configure and change

install -m 644 ./man/* \$(MANDIR)

to something like

install -m 644 ./man/banana.1 \$(MANDIR)/man1/
install -m 644 ./man/monkey.1 \$(MANDIR)/man1/
install -m 644 ./man/monkey-api.3 \$(MANDIR)/man3/

Attachments (1)

0001-configure-fix-156-install-man-pages-to-the-correct-m.patch (1.3 KB) - added by blueness 12 months ago.
Patch to fix the installation directories.

Download all attachments as: .zip

Change History (3)

comment:1 Changed 12 months ago by blueness

Oh, line 332 was for 0.33.0. I just checked out git and its now at line 350. I'm sure you'll find it :P

Changed 12 months ago by blueness

Patch to fix the installation directories.

comment:2 Changed 12 months ago by edsiper

  • Resolution set to fixed
  • Status changed from new to closed

applied, thanks!

Note: See TracTickets for help on using tickets.