diff options
author | demon <demon@FreeBSD.org> | 2001-12-24 05:28:28 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2001-12-24 05:28:28 +0800 |
commit | 726e0f5983de247683080b7d5ef4310e5f67d7d3 (patch) | |
tree | 920c4f20fe9d30d06ec10a20d4eb93a2102aef48 /textproc | |
parent | 45e3e5d94815f93f0aa19b8f8d594d5c6b87b233 (diff) | |
download | freebsd-ports-gnome-726e0f5983de247683080b7d5ef4310e5f67d7d3.tar.gz freebsd-ports-gnome-726e0f5983de247683080b7d5ef4310e5f67d7d3.tar.zst freebsd-ports-gnome-726e0f5983de247683080b7d5ef4310e5f67d7d3.zip |
Fix man.cgi script installation.
PR: 33119
Submitted by: Christopher Elkins <chrise@scardini.com>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/man2html/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/man2html/Makefile b/textproc/man2html/Makefile index f6d8590ae6e0..4c55c724e92b 100644 --- a/textproc/man2html/Makefile +++ b/textproc/man2html/Makefile @@ -29,8 +29,8 @@ do-install: ${PERL5} ${WRKSRC}/install.me -batch -binpath ${PREFIX}/bin \ -manpath ${PREFIX}/man -libpath ${PREFIX}/lib \ -perlpath ${PERL5} - if [ -f ${CGIDIR} ] ; then \ - ${INSTALL_PROGRAM} ${WRKSRC}/man.cgi ${CGIDIR} ; \ + if [ -d ${CGIDIR} ] ; then \ + ${INSTALL_SCRIPT} ${WRKSRC}/man.cgi ${CGIDIR} ; \ fi .include <bsd.port.mk> |