From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-python@lists.gentoo.org
Cc: python@gentoo.org, hasufell@gentoo.org,
"Michał Górny" <mgorny@gentoo.org>
Subject: [gentoo-python] [PATCH 1/2] Pass custom arguments to esetup.py before the 'build' set.
Date: Fri, 11 Jan 2013 22:03:52 +0100 [thread overview]
Message-ID: <1357938233-1810-1-git-send-email-mgorny@gentoo.org> (raw)
This is cleaner, and also permits passing global setup.py options.
---
gx86/eclass/distutils-r1.eclass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass
index 8156a36..1958b1a 100644
--- a/gx86/eclass/distutils-r1.eclass
+++ b/gx86/eclass/distutils-r1.eclass
@@ -175,13 +175,13 @@ DEPEND=${PYTHON_DEPS}
esetup.py() {
debug-print-function ${FUNCNAME} "${@}"
- local args=()
+ local add_args=()
if [[ ! ${DISTUTILS_IN_SOURCE_BUILD} ]]; then
if [[ ! ${BUILD_DIR} ]]; then
die 'Out-of-source build requested, yet BUILD_DIR unset.'
fi
- args+=(
+ add_args+=(
build
--build-base "${BUILD_DIR}"
# using a single directory for them helps us export ${PYTHONPATH}
@@ -192,7 +192,7 @@ esetup.py() {
fi
set -- "${PYTHON:-python}" setup.py \
- "${args[@]}" "${mydistutilsargs[@]}" "${@}"
+ "${mydistutilsargs[@]}" "${@}" "${add_args[@]}"
echo "${@}" >&2
"${@}" || die
--
1.8.1
next reply other threads:[~2013-01-11 21:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-11 21:03 Michał Górny [this message]
2013-01-11 21:03 ` [gentoo-python] [PATCH 2/2] Make option passing docs clear Michał Górny
2013-01-12 18:54 ` [gentoo-python] Re: [PATCH 1/2] Pass custom arguments to esetup.py before the 'build' set Mike Gilbert
2013-01-12 22:50 ` Michał Górny
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=1357938233-1810-1-git-send-email-mgorny@gentoo.org \
--to=mgorny@gentoo.org \
--cc=gentoo-python@lists.gentoo.org \
--cc=hasufell@gentoo.org \
--cc=python@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