diff options
author | lioux <lioux@FreeBSD.org> | 2002-07-04 01:33:24 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-07-04 01:33:24 +0800 |
commit | 097a62797d4241e3e5fac68147f5752908ce8387 (patch) | |
tree | 65dd488d056694ad5c1ed71ec6f77c8643874684 /audio/liba52 | |
parent | 528ac22874229eaf736519e6ebd6478459c0bd35 (diff) | |
download | freebsd-ports-gnome-097a62797d4241e3e5fac68147f5752908ce8387.tar.gz freebsd-ports-gnome-097a62797d4241e3e5fac68147f5752908ce8387.tar.zst freebsd-ports-gnome-097a62797d4241e3e5fac68147f5752908ce8387.zip |
USE_REINPLACE
Diffstat (limited to 'audio/liba52')
-rw-r--r-- | audio/liba52/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/liba52/Makefile b/audio/liba52/Makefile index e08ca119a9c0..245a00ffb9db 100644 --- a/audio/liba52/Makefile +++ b/audio/liba52/Makefile @@ -15,6 +15,7 @@ DISTNAME= a52dec-${PORTVERSION:S/.b/b/} MAINTAINER= lioux@FreeBSD.org USE_GMAKE= yes +USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-oss --enable-shared USE_LIBTOOL= yes @@ -48,11 +49,11 @@ pre-everything:: post-patch: .ifndef(WITH_OPTIMIZED_CFLAGS) - @${PERL} -pi.orig -e 's!-O3!${CFLAGS}!;s!-mcpu=[^"]+"!"!' \ + @${REINPLACE_CMD} -E -e 's!-O3!${CFLAGS}!' -e 's!-mcpu=[^"]+"!"!' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} .endif .ifndef(WITHOUT_DJBFFT) - @${PERL} -pi -e 's|(fftc4.h)|djbfft/\1|' ${WRKSRC}/liba52/imdct.c + @${REINPLACE_CMD} -E -e 's|(fftc4.h)|djbfft/\1|' ${WRKSRC}/liba52/imdct.c .endif post-configure: |