diff options
author | asami <asami@FreeBSD.org> | 1998-12-17 18:43:52 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-12-17 18:43:52 +0800 |
commit | 933c2bc705a74f0bf3f64e11bb273f2259952cf2 (patch) | |
tree | 2047e7b95a2fef7c46d5764d1a5e3cd2fc53ca8e | |
parent | 1e2f2a029dd2e987dfd53cbf467e645869432fe6 (diff) | |
download | freebsd-ports-gnome-933c2bc705a74f0bf3f64e11bb273f2259952cf2.tar.gz freebsd-ports-gnome-933c2bc705a74f0bf3f64e11bb273f2259952cf2.tar.zst freebsd-ports-gnome-933c2bc705a74f0bf3f64e11bb273f2259952cf2.zip |
No need to use += for variable defined only once.
-rw-r--r-- | ftp/proftpd-devel/Makefile | 4 | ||||
-rw-r--r-- | ftp/proftpd/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile index 0e6a5ab554e4..cd6adba75224 100644 --- a/ftp/proftpd-devel/Makefile +++ b/ftp/proftpd-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 26 January 1998 # Whom: Stephane Legrand # -# $Id: Makefile,v 1.4 1998/07/02 11:06:26 vanilla Exp $ +# $Id: Makefile,v 1.5 1998/12/14 22:13:37 billf Exp $ # DISTNAME= proftpd-1.2.0pre1 @@ -19,7 +19,7 @@ MAN8= proftpd.8 ftpshut.8 USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --localstatedir=/var/run \ +CONFIGURE_ARGS= --localstatedir=/var/run \ --with-modules=mod_ratio post-configure: diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index 0e6a5ab554e4..cd6adba75224 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/Makefile @@ -3,7 +3,7 @@ # Date created: 26 January 1998 # Whom: Stephane Legrand # -# $Id: Makefile,v 1.4 1998/07/02 11:06:26 vanilla Exp $ +# $Id: Makefile,v 1.5 1998/12/14 22:13:37 billf Exp $ # DISTNAME= proftpd-1.2.0pre1 @@ -19,7 +19,7 @@ MAN8= proftpd.8 ftpshut.8 USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --localstatedir=/var/run \ +CONFIGURE_ARGS= --localstatedir=/var/run \ --with-modules=mod_ratio post-configure: |