diff options
author | asami <asami@FreeBSD.org> | 1996-11-20 03:01:20 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-20 03:01:20 +0000 |
commit | 1f93abc90bf24888bc77cb54f6d4a2bbdcf81113 (patch) | |
tree | 2b7c44bd3a95b30432cc625bf7abc384d982657e /devel | |
parent | 6ebd7b9423db6196db2928c023b66475facf3949 (diff) | |
download | FreeBSD-ports-1f93abc90bf24888bc77cb54f6d4a2bbdcf81113.zip FreeBSD-ports-1f93abc90bf24888bc77cb54f6d4a2bbdcf81113.tar.gz |
Change hard link to symlink so that it works even when the manpages are
not compressed at the time of link creation.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/noweb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/noweb/Makefile b/devel/noweb/Makefile index aa2ffee..045d69f 100644 --- a/devel/noweb/Makefile +++ b/devel/noweb/Makefile @@ -3,7 +3,7 @@ # Date created: 29 July 1995 # Whom: thomas@ghpc8.ihf.rwth-aachen.de # -# $Id: Makefile,v 1.6 1996/03/27 08:42:13 tg Exp $ +# $Id: Makefile,v 1.7 1996/11/18 11:23:26 asami Exp $ # DISTNAME= noweb-2.7d @@ -25,8 +25,8 @@ MAN1= htmltoc.1 nodefs.1 noindex.1 noroots.1 notangle.1 \ post-install: @rm ${PREFIX}/man/man1/noweave.1* @rm ${PREFIX}/man/man1/nountangle.1* - ln ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/noweave.1.gz - ln ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/nountangle.1.gz + ln -sf ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/noweave.1.gz + ln -sf ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/nountangle.1.gz .endif .include <bsd.port.mk> |