diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2006-06-02 08:56:14 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2006-06-02 08:56:14 +0000 |
commit | 53e22932221f5192a5d2d1e8f4da0ee5955faee1 (patch) | |
tree | 4571e3f50b17d472c20b353fd48a9dffd005bc4e /lang/clisp | |
parent | ed375e9075aec9174cf55456c2ceb89652615a61 (diff) | |
download | ports-53e22932221f5192a5d2d1e8f4da0ee5955faee1.tar.gz ports-53e22932221f5192a5d2d1e8f4da0ee5955faee1.zip |
Fix CFLAGS to make devel/meta-cvs buildable
PR: ports/94456
Submitted by: Shaun Amott <shaun@inerd.com>
Notes
Notes:
svn path=/head/; revision=164206
Diffstat (limited to 'lang/clisp')
-rw-r--r-- | lang/clisp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 6e60f5e62470..ea5865f828b9 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -7,6 +7,7 @@ PORTNAME= clisp PORTVERSION= 2.38 +PORTREVISION= 1 CATEGORIES= lang lisp MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR=${PORTNAME}/release/${PORTVERSION} @@ -51,6 +52,8 @@ post-extract: post-configure: cd ${WRKSRC}/${BUILD_DIRNAME} && \ ./makemake ${MAKEMAKE_ARGS} > Makefile && \ - make config.lisp + ${MAKE} config.lisp + ${REINPLACE_CMD} -e 's#^CFLAGS =#CFLAGS = -I${LOCALBASE}/include#' \ + ${WRKSRC}/${BUILD_DIRNAME}/Makefile .include <bsd.port.post.mk> |