|
Bugzilla – Full Text Bug Listing |
| Summary: | xpce-client(1) manual page gets installed into bad directory | ||
|---|---|---|---|
| Product: | SWI-Prolog | Reporter: | Petr Pisar <ppisar> |
| Component: | xpce | Assignee: | Jan Wielemaker <bugs> |
| Status: | CONFIRMED --- | ||
| Severity: | normal | ||
| Priority: | Highest | ||
| Version: | unspecified | ||
| Hardware: | PC | ||
| OS: | Linux | ||
Thanks. Removed local installation and respect $(DESTDIR). Cheers --- Jan |
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).