diff options
author | miwi <miwi@FreeBSD.org> | 2006-08-21 19:37:57 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-08-21 19:37:57 +0800 |
commit | 6b9ec132dc65547a6d825610c398e9f9bd813ead (patch) | |
tree | 1d0aee8c97ae33aef468eac83d3be2dcd6b1f272 /comms | |
parent | f4eb269573faac4c0eff56a941553e288dda807b (diff) | |
download | freebsd-ports-gnome-6b9ec132dc65547a6d825610c398e9f9bd813ead.tar.gz freebsd-ports-gnome-6b9ec132dc65547a6d825610c398e9f9bd813ead.tar.zst freebsd-ports-gnome-6b9ec132dc65547a6d825610c398e9f9bd813ead.zip |
- Respect CFLAGS
PR: ports/102196
Submitted by: Soeren Straarup <xride(at)x12.dk> (maintainer)
Approved by: krion (mentor
Diffstat (limited to 'comms')
-rw-r--r-- | comms/linpsk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comms/linpsk/Makefile b/comms/linpsk/Makefile index e660b170dcee..f8ad80b6b907 100644 --- a/comms/linpsk/Makefile +++ b/comms/linpsk/Makefile @@ -25,8 +25,8 @@ USE_QT_VER= 3 USE_GMAKE= yes GNU_CONFIGURE= yes -CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --with-qtdir=${X11BASE} --prefix=${PREFIX} |