diff options
author | tron <tron@pkgsrc.org> | 1999-05-21 22:09:21 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-05-21 22:09:21 +0000 |
commit | 2b2e8c558d2bf8a59db3027df5e96beb545a55fa (patch) | |
tree | 3aca9a5f76a44d0af1274400c52bd8c1640d7b11 /net/ircII | |
parent | 84ec10d4a2137adf4f94184f2d8f5f7760a687bd (diff) | |
download | pkgsrc-2b2e8c558d2bf8a59db3027df5e96beb545a55fa.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" |