diff options
author | tron <tron> | 1999-05-21 22:09:21 +0000 |
---|---|---|
committer | tron <tron> | 1999-05-21 22:09:21 +0000 |
commit | 4b4070754572123853d78ae3d1eff0cf3df7730b (patch) | |
tree | 3aca9a5f76a44d0af1274400c52bd8c1640d7b11 /net/ircII | |
parent | b6cb26bde0f4d4b858008587db8f9f43c1d9cf35 (diff) | |
download | pkgsrc-4b4070754572123853d78ae3d1eff0cf3df7730b.tar.gz |
Use "ln -fs" to create symbolic link in case a file hasn't been removed
due to a incomplete package list.
Diffstat (limited to 'net/ircII')
-rw-r--r-- | net/ircII/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ircII/Makefile b/net/ircII/Makefile index 444c573c37e..289e045fd3a 100644 --- a/net/ircII/Makefile +++ b/net/ircII/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 1999/05/21 20:39:22 tv Exp $ +# $NetBSD: Makefile,v 1.18 1999/05/21 22:09:21 tron Exp $ # FreeBSD Id: Makefile,v 1.14 1997/05/14 10:35:13 torstenb Exp # @@ -28,6 +28,6 @@ post-install: ${ECHO} Compressing help files; \ find ${PREFIX}/share/irc/help -type f -print | xargs ${GZIP_CMD}; \ fi - (cd ${PREFIX}/man/man1; ${LN} -s ircII.1 irc.1) + ${LN} -fs ircII.1 ${PREFIX}/man/man1/irc.1 .include "../../mk/bsd.pkg.mk" |