diff options
author | gahr <gahr@FreeBSD.org> | 2012-08-06 20:07:13 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2012-08-06 20:07:13 +0800 |
commit | 130f6daf31ba10be0fd464c10be4042585e3ea92 (patch) | |
tree | 7685025872e82aa1c418e9aef6c0b344ba51f17b | |
parent | d1f68d5ab78b1476d4620b872e4847ba8b1feb5a (diff) | |
download | freebsd-ports-gnome-130f6daf31ba10be0fd464c10be4042585e3ea92.tar.gz freebsd-ports-gnome-130f6daf31ba10be0fd464c10be4042585e3ea92.tar.zst freebsd-ports-gnome-130f6daf31ba10be0fd464c10be4042585e3ea92.zip |
- Use correct paths to perl and sh binaries
PR: 169895
Submitted by: Jan Beich <jbeich@tormail.org>
-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 |