diff options
author | jlam <jlam> | 2000-11-03 00:16:32 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-11-03 00:16:32 +0000 |
commit | e9ac0c4331b78a79fbff0bdb4f3704b799d0623c (patch) | |
tree | 0f3932a620e95c5b6255f81ae5b86263fd3f5682 /devel/boost | |
parent | badf81dbfeaaa36c983987abac89d4120633319d (diff) | |
download | pkgsrc-e9ac0c4331b78a79fbff0bdb4f3704b799d0623c.tar.gz |
Honor CXX and CXXFLAGS definitions from the environment during build.
Diffstat (limited to 'devel/boost')
-rw-r--r-- | devel/boost/files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/boost/files/Makefile b/devel/boost/files/Makefile index eb2e0f86d17..c340db79efe 100644 --- a/devel/boost/files/Makefile +++ b/devel/boost/files/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2000/07/13 18:25:33 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2000/11/03 00:16:32 jlam Exp $ -CXX= c++ +CXX?= c++ LIB= libboost.la @@ -10,7 +10,7 @@ SRCS= libs/timer/prg_display.cpp \ OBJS= ${SRCS:.cpp=.lo} LOBJS= ${OBJS:T} -CXXFLAGS= # empty +CXXFLAGS+= # empty CPPFLAGS+= -I${.CURDIR} -I${LOCALBASE}/include/sgi-stl all: ${LIB} |