Bug 30 - xpce-client(1) manual page gets installed into bad directory
: xpce-client(1) manual page gets installed into bad directory
Status: CONFIRMED
Product: SWI-Prolog
Classification: Unclassified
Component: xpce
: unspecified
: PC Linux
: Highest normal
Assigned To: Jan Wielemaker
:
:
:
  Show dependency treegraph
 
Reported: 2012-03-07 17:42 CET by Petr Pisar
Modified: 2012-03-07 19:09 CET (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Petr Pisar 2012-03-07 17:42:43 CET
6.0.2 installs xpce-client(1) manual page into /usr/lib64/swipl-6.0.2/xpce/man/
instead to /usr/share/man/man1.

Makefile snip:

dv-man:     dv-manual
        for f in xpce-client; do \
            $(INSTALL_DATA) ../man/$$f.1 $(DESTDIR)$(DVHOME)/man; \
            if test -w $(smandir); then \
                $(INSTALL_DATA) ../man/$$f.1
$(DESTDIR)$(smandir)/$$f.$(mansec); \
            fi; \
            done

It installs into $(DVHOME) and then it checks $(smandir) without $(DESTDIR).
Comment 1 Jan Wielemaker 2012-03-07 19:09:28 CET
Thanks.  Removed local installation and respect $(DESTDIR). 

   Cheers --- Jan