diff options
author | kris <kris@FreeBSD.org> | 1999-04-25 21:22:06 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 1999-04-25 21:22:06 +0800 |
commit | fa6b2ef6e797609118e62c0fcc140c7fb375ebe7 (patch) | |
tree | c4360c3355c5ccf43fe8f5f6181e4ca5645328cf | |
parent | 80434ec1bebbd70172268e7e79a58b67a8191f9f (diff) | |
download | freebsd-ports-gnome-fa6b2ef6e797609118e62c0fcc140c7fb375ebe7.tar.gz freebsd-ports-gnome-fa6b2ef6e797609118e62c0fcc140c7fb375ebe7.tar.zst freebsd-ports-gnome-fa6b2ef6e797609118e62c0fcc140c7fb375ebe7.zip |
Don't use CFLAGS for CXXFLAGS. If someone wants to compile the port using
optimization settings, they can use CXXFLAGS like everyone else :-)
-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> + |