diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-08 10:22:14 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-08 10:22:14 +0000 |
commit | 31154892b641cd15adf68371929358d08862d264 (patch) | |
tree | 04c60b5eee34ac32bb4e64c7f467d3bf71838892 /audio/nas | |
parent | 9b646e86c33d57c3d495a4a0218969df75dcbd63 (diff) | |
download | ports-31154892b641cd15adf68371929358d08862d264.tar.gz ports-31154892b641cd15adf68371929358d08862d264.zip |
PERL -> REINPLACE_CMD
PR: 39283
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Notes
Notes:
svn path=/head/; revision=62644
Diffstat (limited to 'audio/nas')
-rw-r--r-- | audio/nas/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index 733ef8aa1367..a70ed84e4d6d 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -13,6 +13,7 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes USE_IMAKE= yes ALL_TARGET= World # no need to "xmkmf -a" and create the Makefiles twice -- see above @@ -25,7 +26,7 @@ INSTALLS_SHLIB= yes 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" post-install: @${SED} -e 's:/usr/X11R6:${PREFIX}:g' ${PKGMESSAGE} |