diff options
author | Alexander Langer <alex@FreeBSD.org> | 1997-12-24 01:21:47 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 1997-12-24 01:21:47 +0000 |
commit | dab61dff141cf6f3c73d292a0b3d51f7c627db07 (patch) | |
tree | 28fae1fb481b10b7b6210a2472019866db9d8bac /lang/tclX80 | |
parent | The Christmas Wine: update to 971221 version of WINE (diff) |
No need to use += on first appearance of variables.
Diffstat (limited to 'lang/tclX80')
-rw-r--r-- | lang/tclX80/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/tclX80/Makefile b/lang/tclX80/Makefile index 548f66e29609..6da3107bf30e 100644 --- a/lang/tclX80/Makefile +++ b/lang/tclX80/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 \ |