diff options
author | Chuck Robey <chuckr@FreeBSD.org> | 1996-08-24 17:12:05 +0000 |
---|---|---|
committer | Chuck Robey <chuckr@FreeBSD.org> | 1996-08-24 17:12:05 +0000 |
commit | 4ac5951745ff2c76a5cf6eea2973578013cf001a (patch) | |
tree | da2e5f37c7ddb9f736c577a59bb5dd8f350651c4 /lang | |
parent | 075e28caf2a1b0cff53fb8922aa0ab13d2070e9d (diff) | |
download | ports-4ac5951745ff2c76a5cf6eea2973578013cf001a.tar.gz ports-4ac5951745ff2c76a5cf6eea2973578013cf001a.zip |
Fix the post-install target, .endif in the wrong place.
Notes
Notes:
svn path=/head/; revision=3694
Diffstat (limited to 'lang')
-rw-r--r-- | lang/itcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/itcl/Makefile b/lang/itcl/Makefile index e1d9fcaedc3c..bcc53d02da89 100644 --- a/lang/itcl/Makefile +++ b/lang/itcl/Makefile @@ -3,7 +3,7 @@ # Date created: Aug 17 1996 # Whom: chuckr # -# $Id: Makefile,v 1.10 1996/07/02 00:19:10 gpalmer Exp $ +# $Id: Makefile,v 1.11 1996/08/24 03:51:00 chuckr Exp $ # DISTNAME= itcl2.1 @@ -43,6 +43,7 @@ post-install: do gzip -9nf $(PREFIX)/share/itcl/itk/man/mann/`$(BASENAME) $$m`;done @for m in $(WRKSRC)/iwidgets2.1.0/doc/*.n ; \ do gzip -9nf $(PREFIX)/share/itcl/iwidgets/man/mann/`$(BASENAME) $$m`;done +.endif @echo "*****************************************************" @echo "There are new man directories to install now:" @echo "Add $(PREFIX)share/itcl/tcl7.5" @@ -52,7 +53,6 @@ post-install: @echo " iwidgets" @echo "To the manpath in /etc/manpath.config" @echo "*****************************************************" -.endif /sbin/ldconfig -m $(PREFIX)/lib .include <bsd.port.mk> |