diff options
author | Alexander Langer <alex@FreeBSD.org> | 1997-12-24 09:21:47 +0800 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 1997-12-24 09:21:47 +0800 |
commit | dab61dff141cf6f3c73d292a0b3d51f7c627db07 (patch) | |
tree | 28fae1fb481b10b7b6210a2472019866db9d8bac /mail/fetchmail | |
parent | 2a42fd62a8e25a47ed589726645bccb6357e1493 (diff) | |
download | freebsd-ports-gnome-dab61dff141cf6f3c73d292a0b3d51f7c627db07.tar.gz freebsd-ports-gnome-dab61dff141cf6f3c73d292a0b3d51f7c627db07.tar.zst freebsd-ports-gnome-dab61dff141cf6f3c73d292a0b3d51f7c627db07.zip |
No need to use += on first appearance of variables.
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 2da8d2a20fd2..5ce5da822726 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Oct 1996 # Whom: Ville Eerola <ve@sci.fi> # -# $Id: Makefile,v 1.52 1997/11/29 14:22:27 max Exp $ +# $Id: Makefile,v 1.53 1997/12/15 20:55:27 max Exp $ # DISTNAME= fetchmail-4.3.5 @@ -13,8 +13,8 @@ MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ MAINTAINER= ve@sci.fi GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-opie -CONFIGURE_ENV+= LDFLAGS="${CFLAGS}" +CONFIGURE_ARGS= --enable-opie +CONFIGURE_ENV= LDFLAGS="${CFLAGS}" MAN1= fetchmail.1 .if exists(/usr/lib/libkrb.a) && (defined(MAKE_EBONES) || defined(MAKE_KERBEROS4)) |