diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2012-08-06 12:07:13 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2012-08-06 12:07:13 +0000 |
commit | 0cbca7e3d34e00b19eddc3af7c22ccc80088ef60 (patch) | |
tree | 7685025872e82aa1c418e9aef6c0b344ba51f17b /audio/beast | |
parent | b3c740f8f2caf5d798bbf8466a4d22a5b205c5bf (diff) |
- Use correct paths to perl and sh binaries
PR: 169895
Submitted by: Jan Beich <jbeich@tormail.org>
Notes
Notes:
svn path=/head/; revision=302172
Diffstat (limited to 'audio/beast')
-rw-r--r-- | audio/beast/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/beast/Makefile b/audio/beast/Makefile index c8827a13f0df..d4df29ce626f 100644 --- a/audio/beast/Makefile +++ b/audio/beast/Makefile @@ -55,6 +55,10 @@ post-patch: /FLAGS=/ s/(-g|-ggdb3|-pipe|-O2|-ftracer|-finline-functions|-fno-keep-static-consts)//; \ s|echo aout|echo elf|g' \ ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' \ + ${WRKSRC}/autotools/intltool-merge + @${REINPLACE_CMD} -e 's|/bin/bash|${SH}|' \ + ${WRKSRC}/mkrelease.sh @${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||g' \ ${WRKSRC}/bse/Makefile.in \ ${WRKSRC}/bse/zintern/Makefile.in |