diff options
author | Maho Nakata <maho@FreeBSD.org> | 2003-10-08 03:11:12 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2003-10-08 03:11:12 +0000 |
commit | a758aa5732b4ebcc6590eb2e64ce018476a9520a (patch) | |
tree | 934066067cc7eb5f8ba6c62802be47ff9f65ad2e /science/chemtool | |
parent | b83267dd6e75bc74c52dd73ae006ce0e8fd92338 (diff) |
Fix CONFIGURE_ENV, this is passed as-is to the shell.
Submitted by: will
Reviewed by: Jonathan Drews <j.e.drews@att.net>
Notes
Notes:
svn path=/head/; revision=90591
Diffstat (limited to 'science/chemtool')
-rw-r--r-- | science/chemtool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/science/chemtool/Makefile b/science/chemtool/Makefile index ff56b88e2aee..d13b8af23066 100644 --- a/science/chemtool/Makefile +++ b/science/chemtool/Makefile @@ -19,9 +19,9 @@ RUN_DEPENDS= transfig:${PORTSDIR}/print/transfig USE_GNOME= gtk12 USE_GMAKE= yes GNU_CONFIGURE= yes +CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libEMF CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CFLAGS+="-I${LOCALBASE}/include -I${LOCALBASE}/include/libEMF" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CFLAGS+="${CFLAGS}" LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --enable-emf=yes MAN1= chemtool.1 cht.1 |