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 /emulators/mtools | |
parent | 2a42fd62a8e25a47ed589726645bccb6357e1493 (diff) | |
download | ports-dab61dff141cf6f3c73d292a0b3d51f7c627db07.tar.gz ports-dab61dff141cf6f3c73d292a0b3d51f7c627db07.zip |
No need to use += on first appearance of variables.
Notes
Notes:
svn path=/head/; revision=9161
Diffstat (limited to 'emulators/mtools')
-rw-r--r-- | emulators/mtools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/mtools/Makefile b/emulators/mtools/Makefile index 4676a4266e44..1c1ac7f13efe 100644 --- a/emulators/mtools/Makefile +++ b/emulators/mtools/Makefile @@ -3,7 +3,7 @@ # Date created: 5 October 1994 # Whom: jmz # -# $Id: Makefile,v 1.16 1997/08/13 15:28:12 jmz Exp $ +# $Id: Makefile,v 1.17 1997/10/08 21:12:22 jmz Exp $ # DISTNAME= mtools-3.8 @@ -14,7 +14,7 @@ MASTER_SITES= ftp://linux.wauug.org/pub/knaff/mtools/ \ MAINTAINER= jmz@FreeBSD.org HAS_CONFIGURE= yes -CONFIGURE_ARGS+=--enable-xdf --prefix=${PREFIX} +CONFIGURE_ARGS= --enable-xdf --prefix=${PREFIX} USE_GMAKE= yes |