Opened 20 years ago

Closed 20 years ago

Last modified 19 years ago

#1766 closed defect (fixed)

incorrect manpage install line in portfile

Reported by: jbc@… Owned by: mich@…
Priority: Normal Milestone:
Component: ports Version: 1.0
Keywords: Cc:
Port:

Description

Install fails at staging with message:

Error: Target com.apple.destroot returned: shell command "cd /opt/darwinports/dports/textproc/ glark/work/glark-1.6.5 && install glark /opt/darwinports/dports/textproc/glark/work/destroot/opt/ local/bin && install glark.1 /opt/darwinports/dports/textproc/glark/work/destroot/opt/local/man/ man1" returned error 71 Command output: install: /opt/darwinports/dports/textproc/glark/work/destroot/opt/local/man/ man1: No such file or directory

Based on the directory structure, it appears that

destroot { system "cd ${worksrcpath} && \

install ${name} ${destroot}${prefix}/bin && \ install ${name}.1 ${destroot}${prefix}/man/man1" }

in the portfile should be

destroot { system "cd ${worksrcpath} && \

install ${name} ${destroot}${prefix}/bin && \ install ${name}.1 ${destroot}${prefix}/share/man/man1" }

Installed fine after this change.

Change History (2)

comment:1 Changed 20 years ago by waqar@…

Owner: changed from darwinports-bugs@… to mich@…

comment:2 Changed 20 years ago by mww@…

Resolution: fixed
Status: newclosed

already fixed by matt@

Note: See TracTickets for help on using tickets.