diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-11-26 23:50:06 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-11-26 23:50:06 +0000 |
commit | 4dcbd330ae81945c3eea1eb7cdb144d7c0992218 (patch) | |
tree | 71c7887145dddb75e7cc0cf19d47e7da43907f2a /textproc/jade/Makefile | |
parent | eb9948b3311ba6cd91abae703c7dd9f76a958b16 (diff) | |
download | FreeBSD-ports-4dcbd330ae81945c3eea1eb7cdb144d7c0992218.zip FreeBSD-ports-4dcbd330ae81945c3eea1eb7cdb144d7c0992218.tar.gz |
Unbreak on alpha by using USE_REINPLACE.
Reported by: kris
Diffstat (limited to 'textproc/jade/Makefile')
-rw-r--r-- | textproc/jade/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile index 9c275b7..db64b23 100644 --- a/textproc/jade/Makefile +++ b/textproc/jade/Makefile @@ -28,11 +28,12 @@ post-extract: .include <bsd.port.pre.mk> .if ${ARCH} == "alpha" +USE_REINPLACE= yes # This is to deal with the broken assumption that Vector<T>::size_type, # String<T>::size_type is size_t as mentioned in doc/ideas.htm. At least # I believe this is what is preventing jade from linking on the Alpha. post-patch: - ${PERL} -pi.size_t -e 's/<size_t>/<unsigned int>/g' `find ${WRKSRC} -type f` + ${REINPLACE_CMD} -e 's/<size_t>/<unsigned int>/g' `find ${WRKSRC} -type f` .endif pre-install: |