diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-23 01:06:27 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-23 01:06:27 +0800 |
commit | c147389ae60aad271c5b1f86f9ba1368e91eb78b (patch) | |
tree | c30052169cd8bb432a4dc0eb35650e1f900ebcfa /math/oleo | |
parent | 2789058898bc9e5f45b1cf4bd04aaffebbdd1626 (diff) | |
download | freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.tar.gz freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.tar.zst freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39656
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'math/oleo')
-rw-r--r-- | math/oleo/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/oleo/Makefile b/math/oleo/Makefile index 03483610e745..bada5da24e8c 100644 --- a/math/oleo/Makefile +++ b/math/oleo/Makefile @@ -16,6 +16,7 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext +USE_REINPLACE= yes USE_AUTOCONF_VER=213 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" @@ -42,6 +43,6 @@ pre-everything:: post-patch: @find ${WRKSRC} -name '*.[ch]' | xargs \ - ${PERL} -pi -e "s|<malloc.h>|<stdlib.h>|g" + ${REINPLACE_CMD} -e "s|<malloc.h>|<stdlib.h>|g" .include <bsd.port.mk> |