diff options
author | alex <alex@FreeBSD.org> | 1997-12-24 01:21:47 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1997-12-24 01:21:47 +0000 |
commit | 81b9ed4f2298c0732fc1e9c02e92bbbec0bf3b59 (patch) | |
tree | 4a42a978650c3b49c7da351295e4c90edaf0251f /lang/tclX | |
parent | abf612f4bd49f654e032a8a43ec209cb3827fdf9 (diff) | |
download | FreeBSD-ports-81b9ed4f2298c0732fc1e9c02e92bbbec0bf3b59.zip FreeBSD-ports-81b9ed4f2298c0732fc1e9c02e92bbbec0bf3b59.tar.gz |
No need to use += on first appearance of variables.
Diffstat (limited to 'lang/tclX')
-rw-r--r-- | lang/tclX/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/tclX/Makefile b/lang/tclX/Makefile index 548f66e..6da3107 100644 --- a/lang/tclX/Makefile +++ b/lang/tclX/Makefile @@ -3,7 +3,7 @@ # Date created: 6 February 1996 # Whom: jkh # -# $Id: Makefile,v 1.18 1997/09/12 17:16:18 pst Exp $ +# $Id: Makefile,v 1.19 1997/10/09 08:19:14 tg Exp $ # DISTNAME= tclX7.5.2 @@ -17,8 +17,8 @@ MAINTAINER= ports@FreeBSD.ORG WRKSRC= ${WRKDIR}/${DISTNAME}/unix GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-shared --with-tk -CONFIGURE_ENV+= PREFIX=${PREFIX} +CONFIGURE_ARGS= --enable-shared --with-tk +CONFIGURE_ENV= PREFIX=${PREFIX} MAN3= CmdWrite.3 Handles.3 Keylist.3 TclCommandWriting.3 \ TclXInit.3 Tcl_HandleAlloc.3 Tcl_HandleFree.3 \ Tcl_HandleTblInit.3 Tcl_HandleTblRelease.3 \ |