diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-09-24 10:33:15 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-09-24 10:33:15 +0000 |
commit | 727385f98fd5126f4d43db8f86718068e0cd42a6 (patch) | |
tree | 66dfae2805b403a953a8cac01268945de56d6329 /www/wwwcount | |
parent | bb629250595d774b4fd9ba00b4d5b3820b268d7e (diff) | |
download | pkgsrc-727385f98fd5126f4d43db8f86718068e0cd42a6.tar.gz |
Use ln -s to install a symlink, instead of install -s. Fixes problems on
SunOS. From Jonathan Perkin in PR pkg/22928.
Diffstat (limited to 'www/wwwcount')
-rw-r--r-- | www/wwwcount/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/wwwcount/Makefile b/www/wwwcount/Makefile index 2d8d0d06323..3738e6c920a 100644 --- a/www/wwwcount/Makefile +++ b/www/wwwcount/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2003/07/17 22:56:08 grant Exp $ +# $NetBSD: Makefile,v 1.8 2003/09/24 10:33:15 jmmv Exp $ # FreeBSD: Makefile,v 1.12 1998/09/28 18:02:05 smace Exp DISTNAME= wwwcount2.5 @@ -24,7 +24,7 @@ do-install: ${INSTALL_MAN_DIR} ${PREFIX}/share/doc/wwwcount ${INSTALL_MAN} ${WRKSRC}/docs/blues.gif ${PREFIX}/share/doc/wwwcount ${INSTALL_MAN} ${WRKSRC}/docs/Count.html ${PREFIX}/share/doc/wwwcount - ${INSTALL} -l rs ${PREFIX}/share/doc/wwwcount/Count.html ${PREFIX}/share/doc/wwwcount/index.html + ( cd ${PREFIX}/share/doc/wwwcount && ${LN} -s Count.html index.html ) ${INSTALL_MAN} ${WRKSRC}/docs/Count2_5-ex.html ${PREFIX}/share/doc/wwwcount ${INSTALL_MAN} ${WRKSRC}/docs/Count_Changelog.html ${PREFIX}/share/doc/wwwcount ${INSTALL_MAN} ${WRKSRC}/docs/Count_FAQ.html ${PREFIX}/share/doc/wwwcount |