From: Victor K <ktrace@yandex.ru>
To: gentoo-dev@lists.gentoo.org
Subject: Re: [gentoo-dev] [PATCH] eclass/waf-utils.eclass: add parameters to compile and install
Date: Sat, 22 Sep 2018 15:55:10 +0300 [thread overview]
Message-ID: <20180922155510.1638942e@stronghold> (raw)
In-Reply-To: <1537545773.926.1.camel@gentoo.org>
[-- Attachment #1.1: Type: text/plain, Size: 7 bytes --]
fixed
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-class-waf-utils.eclass-add-parameters-to-compile-and.patch --]
[-- Type: text/x-patch, Size: 1666 bytes --]
From 09f4d9d638c2079aa05043236703159971042a6e Mon Sep 17 00:00:00 2001
From: ktrace <ktrace@yandex.ru>
Date: Sat, 22 Sep 2018 15:53:16 +0300
Subject: [PATCH] class/waf-utils.eclass: add parameters to compile and
install
---
eclass/waf-utils.eclass | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
index 4d02483a927..e7c8acafd3e 100644
--- a/eclass/waf-utils.eclass
+++ b/eclass/waf-utils.eclass
@@ -89,7 +89,7 @@ waf-utils_src_configure() {
CCFLAGS="${CFLAGS}" LINKFLAGS="${CFLAGS} ${LDFLAGS}" "${WAF_BINARY}" \
"--prefix=${EPREFIX}/usr" \
"${libdir[@]}" \
- "$@" \
+ "${@}" \
configure || die "configure failed"
}
@@ -102,8 +102,8 @@ waf-utils_src_compile() {
[[ ${WAF_VERBOSE} == ON ]] && _mywafconfig="--verbose"
local jobs="--jobs=$(makeopts_jobs)"
- echo "\"${WAF_BINARY}\" build ${_mywafconfig} ${jobs}"
- "${WAF_BINARY}" ${_mywafconfig} ${jobs} || die "build failed"
+ echo "\"${WAF_BINARY}\" ${@} build ${_mywafconfig} ${jobs}"
+ "${WAF_BINARY}" "${@}" ${_mywafconfig} ${jobs} || die "build failed"
}
# @FUNCTION: waf-utils_src_install
@@ -112,9 +112,8 @@ waf-utils_src_compile() {
waf-utils_src_install() {
debug-print-function ${FUNCNAME} "$@"
- echo "\"${WAF_BINARY}\" --destdir=\"${D}\" install"
- "${WAF_BINARY}" --destdir="${D}" install || die "Make install failed"
-
+ echo "\"${WAF_BINARY}\" --destdir=\"${D}\" \"${@}\" install"
+ "${WAF_BINARY}" --destdir="${D}" "${@}" install || die "Make install failed"
# Manual document installation
einstalldocs
}
--
2.16.4
[-- Attachment #2: Цифровая подпись OpenPGP --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
prev parent reply other threads:[~2018-09-22 12:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-21 15:51 [gentoo-dev] [PATCH] eclass/waf-utils.eclass: add parameters to compile and install Victor Kustov
2018-09-21 16:02 ` Michał Górny
2018-09-22 12:55 ` Victor K [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180922155510.1638942e@stronghold \
--to=ktrace@yandex.ru \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox