public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH] eclass/waf-utils.eclass: add parameters to compile and  install
@ 2018-09-21 15:51 Victor Kustov
  2018-09-21 16:02 ` Michał Górny
  0 siblings, 1 reply; 3+ messages in thread
From: Victor Kustov @ 2018-09-21 15:51 UTC (permalink / raw
  To: gentoo-dev


[1] https://github.com/gentoo/gentoo/pull/9533#discussion_r211739558

This patch add parameters to compile and install phases in waf-utils
eclass. Need to solve [1]

---
 eclass/waf-utils.eclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
index 4d02483a927..33515b883b5 100644
--- a/eclass/waf-utils.eclass
+++ b/eclass/waf-utils.eclass
@@ -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,8 +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


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-22 12:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox