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 | 772c5d9f3a82631bfa5835dac11b33bf82ba0125 (patch) | |
tree | 66dfae2805b403a953a8cac01268945de56d6329 | |
parent | 6108e2e87b713af3904693479e773988b07192f5 (diff) | |
download | pkgsrc-772c5d9f3a82631bfa5835dac11b33bf82ba0125.tar.gz |
Use ln -s to install a symlink, instead of install -s. Fixes problems on
SunOS. From Jonathan Perkin in PR pkg/22928.
-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 |