diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2002-09-01 16:07:59 +0000 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2002-09-01 16:07:59 +0000 |
commit | fd50192ea7567a034b59dfc96a1d112f8ccfa573 (patch) | |
tree | 6975c46330f04e77b17cb4d014c9d66ceb4f7a68 /security | |
parent | 54d69c112debb52b84b6d174bd59479eec834fb7 (diff) | |
download | FreeBSD-ports-fd50192ea7567a034b59dfc96a1d112f8ccfa573.zip FreeBSD-ports-fd50192ea7567a034b59dfc96a1d112f8ccfa573.tar.gz |
${PERL} -> ${REINPLACE_CMD}
PR: 40784
Submitted by: corecode@corecode.ath.cx
Reviewed by: flynn@energyhq.homeip.net
Diffstat (limited to 'security')
-rw-r--r-- | security/libmcrypt/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/libmcrypt/Makefile b/security/libmcrypt/Makefile index 644f541..fedb83b 100644 --- a/security/libmcrypt/Makefile +++ b/security/libmcrypt/Makefile @@ -18,6 +18,7 @@ LIB_DEPENDS= ltdl.1:${PORTSDIR}/devel/libtool RESTRICTED= "yes - cryptography" +USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ @@ -31,8 +32,8 @@ post-extract: ${FIND} ${WRKSRC} -name configure -exec ${RM} -f \{\} \; pre-patch: - @${FIND} ${WRKSRC}/modules -name '*.[ch]' | ${XARGS} ${PERL} -pi -e \ - 's|#ifdef USE_LTDL|#if defined\(USE_LTDL\) && !defined\(__FreeBSD__\)|g' + @${FIND} ${WRKSRC}/modules -name '*.[ch]' | ${XARGS} ${REINPLACE_CMD} -e \ + 's|#ifdef USE_LTDL|#if defined(USE_LTDL) && !defined(__FreeBSD__)|g' post-patch: @cd ${WRKSRC}/libltdl && ${LOCALBASE}/bin/autoconf |