diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-11-26 23:50:06 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-11-26 23:50:06 +0000 |
commit | 891fd02c8aea15ae50516711fdea945b4fa13901 (patch) | |
tree | 6d56bbb5383d0e99f2ad7afd608cd5c63192b6f3 /textproc/jade | |
parent | Fix build on -current and PERL->REINPLACE_CMD (diff) |
Unbreak on alpha by using USE_REINPLACE.
Reported by: kris
Notes
Notes:
svn path=/head/; revision=71134
Diffstat (limited to 'textproc/jade')
-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: |