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 /emulators | |
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 'emulators')
-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 4676a42..1c1ac7f 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 |