diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-12-19 12:28:34 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-12-19 12:28:34 +0000 |
commit | e9486f04944a294aeb7b0d0267b5d926145427d5 (patch) | |
tree | 3f8717b876d6f1e9b2da357ed915d27733bfa152 /lang | |
parent | f574d8b10072d21518bcfda6b51633acb1d43e59 (diff) |
- Mark BROKEN on 6.x: does not link
Reported by: pointyhat
Notes
Notes:
svn path=/head/; revision=246232
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gjs/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/gjs/Makefile b/lang/gjs/Makefile index 606e2ec70f98..b60fd1f490d7 100644 --- a/lang/gjs/Makefile +++ b/lang/gjs/Makefile @@ -29,8 +29,14 @@ USE_LDCONFIG= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +BROKEN= does not link on 6.x +.endif + post-patch: ${REINPLACE_CMD} -e 's|/usr/bin/python|/usr/bin/env python|g' \ ${WRKSRC}/scripts/make-tests -.include <bsd.port.mk> +.include <bsd.port.post.mk> |