diff options
author | Kris Kennaway <kris@FreeBSD.org> | 1999-04-25 13:22:06 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 1999-04-25 13:22:06 +0000 |
commit | 1cf7e924c5bb0c141e115e74c3834b70cf6dc442 (patch) | |
tree | f29cd1afce070e2fc5e942ee55bcacaeee27ec6d /mail/kbiff | |
parent | add http://freefall.freebsd.org/~itojun/distfiles/ as alternate place for (diff) |
Don't use CFLAGS for CXXFLAGS. If someone wants to compile the port using
optimization settings, they can use CXXFLAGS like everyone else :-)
Diffstat (limited to 'mail/kbiff')
-rw-r--r-- | mail/kbiff/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/kbiff/Makefile b/mail/kbiff/Makefile index 43f5bd28b348..7e8adad4d840 100644 --- a/mail/kbiff/Makefile +++ b/mail/kbiff/Makefile @@ -3,7 +3,7 @@ # Date created: So 14 Jun 1998 13:09:18 CEST # Whom: andreas # -# $Id: Makefile,v 1.9 1999/03/19 04:39:56 nectar Exp $ +# $Id: Makefile,v 1.10 1999/04/24 17:01:40 kris Exp $ # DISTNAME= kbiff-2.3 @@ -18,6 +18,6 @@ LIB_DEPENDS= kdeui.2:${PORTSDIR}/x11/kdelibs11 \ USE_QT= yes USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" .include <bsd.port.mk> + |