Opened 2 years ago
Closed 5 months ago
#5153 closed enhancement (fixed)
loader/dumper man pages are not installed on make install
Reported by: | strk | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 3.4.3 |
Component: | install | Version: | 3.4.x |
Keywords: | Cc: |
Description
It's a pity, because we do have them and it would be nice for man pgsql2shp
to just work, after install.
Change History (2)
comment:1 by , 12 months ago
Component: | build → install |
---|---|
Milestone: | → PostGIS 3.5.0 |
comment:2 by , 5 months ago
Milestone: | PostGIS 3.5.0 → PostGIS 3.4.3 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Version: | master → 3.4.x |
The manpages are installed as of current 3.4 branch and master branch. Not sure when it was fixed but it's fixed now.
$ sudo make install | grep man mkdir -p /usr/local/share/man/man1 for f in .././../../doc/man/shp2pgsql.1 .././../../doc/man/pgsql2shp.1 .././../../doc/man/pgtopo_export.1 .././../../doc/man/pgtopo_import.1 .././../../doc/man/postgis.1 .././../../doc/man/postgis_restore.1; do \ /usr/bin/install -c -m 644 $f /usr/local/share/man/man1/`basename $f`; \
Note:
See TracTickets
for help on using tickets.
For the record, in order to install manpages at this point you need to explicitly run:
make -C doc/ man-install