diff options
author | chuckr <chuckr@FreeBSD.org> | 1996-08-25 01:12:05 +0800 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 1996-08-25 01:12:05 +0800 |
commit | aaeb4fe5ae296dbe6eef89b3190382a3c4555951 (patch) | |
tree | e8d471842aa289fb0d3c4cc1934074411285cfd4 | |
parent | 2ab9c1bc80c5d338a8ac263a5064339370ba8db5 (diff) | |
download | freebsd-ports-gnome-aaeb4fe5ae296dbe6eef89b3190382a3c4555951.tar.gz freebsd-ports-gnome-aaeb4fe5ae296dbe6eef89b3190382a3c4555951.tar.zst freebsd-ports-gnome-aaeb4fe5ae296dbe6eef89b3190382a3c4555951.zip |
Fix the post-install target, .endif in the wrong place.
-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> |