From b743bdef51c02bea292c106a008c09912b1e0ea8 Mon Sep 17 00:00:00 2001 From: marino Date: Fri, 20 Feb 2015 13:51:53 +0000 Subject: audio/slv2: Set the make environment on the do-build target While here, unmask all the build and install commands. --- audio/slv2/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'audio/slv2') diff --git a/audio/slv2/Makefile b/audio/slv2/Makefile index 4b94f3fceeb6..b92a54afcf75 100644 --- a/audio/slv2/Makefile +++ b/audio/slv2/Makefile @@ -38,16 +38,18 @@ post-patch: 's|^#define _XOPEN_SOURCE .*||' ${WRKSRC}/src/plugin.c do-configure: - @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} --prefix=${PREFIX} configure) + (cd ${WRKSRC} && ${PYTHON_CMD} \ + waf ${WAF_VERBOSE} --prefix=${PREFIX} configure) do-build: - @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} ${WAF_JOBS} build) + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \ + waf ${WAF_VERBOSE} ${WAF_JOBS} build) do-install: - @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} \ - --destdir=${STAGEDIR} install) + (cd ${WRKSRC} && ${PYTHON_CMD} \ + waf ${WAF_VERBOSE} --destdir=${STAGEDIR} install) .for file in lv2_inspect lv2_jack_host lv2_list lv2_simple_jack_host - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file} .endfor .include -- cgit