diff options
author | jmmv <jmmv> | 2003-09-24 10:33:15 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-09-24 10:33:15 +0000 |
commit | baebc4265a76ed33965e8e88d34f3b32d65a20b1 (patch) | |
tree | 66dfae2805b403a953a8cac01268945de56d6329 | |
parent | 5cf6bd4ddec5446ecae62618edf03fbbc6f7c981 (diff) | |
download | pkgsrc-baebc4265a76ed33965e8e88d34f3b32d65a20b1.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 |