diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-11-27 07:50:06 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-11-27 07:50:06 +0800 |
commit | 4dcbd330ae81945c3eea1eb7cdb144d7c0992218 (patch) | |
tree | 71c7887145dddb75e7cc0cf19d47e7da43907f2a | |
parent | eb9948b3311ba6cd91abae703c7dd9f76a958b16 (diff) | |
download | freebsd-ports-gnome-4dcbd330ae81945c3eea1eb7cdb144d7c0992218.tar.gz freebsd-ports-gnome-4dcbd330ae81945c3eea1eb7cdb144d7c0992218.tar.zst freebsd-ports-gnome-4dcbd330ae81945c3eea1eb7cdb144d7c0992218.zip |
Unbreak on alpha by using USE_REINPLACE.
Reported by: kris
-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 9c275b710137..db64b23b5400 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: |