diff options
author | Gregory M. Tuner <gmt@be-evil.net> | 2013-11-25 03:43:15 -0800 |
---|---|---|
committer | Gregory M. Tuner <gmt@be-evil.net> | 2013-11-25 03:43:15 -0800 |
commit | 969ce2483afc5ab97670ebcadb093aac8194f8b8 (patch) | |
tree | 5d99e7efc19afb56ff638ca31766f15c04ff1e9c /eclass/autotools-multilib.eclass | |
parent | dev-libs/json-c-0.11-r1: new ebuild (diff) | |
download | gmt-969ce2483afc5ab97670ebcadb093aac8194f8b8.tar.gz gmt-969ce2483afc5ab97670ebcadb093aac8194f8b8.tar.bz2 gmt-969ce2483afc5ab97670ebcadb093aac8194f8b8.zip |
autotools-multilib.eclass: document counterintuitive behavior of empty MULTILIB_PARALELL_PHASES
Signed-off-by: Gregory M. Tuner <gmt@be-evil.net>
Diffstat (limited to 'eclass/autotools-multilib.eclass')
-rw-r--r-- | eclass/autotools-multilib.eclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass index 6ce5fd6..e3a0231 100644 --- a/eclass/autotools-multilib.eclass +++ b/eclass/autotools-multilib.eclass @@ -93,6 +93,10 @@ esac # src_install. Admittedly, concievably they might set MULTILIB_INSECURE_INSTALL # later in which case we die unneccesarily -- however it's not unreasonable to require # both variables to be set either before or after inherit, but not in a split configuration. +# +# Since an empty MULTILIB_PARALLEL_PHASES causes the default value of "src_configure" +# to be substituted, a dummy value of "none" may be used to signify a request for +# total serialization of all phases if has src_install ${MULTILIB_PARALLEL_PHASES} ; then [[ -n ${MULTILIB_INSECURE_INSTALL} ]] || \ die "src_install in MULTILIB_PARALLEL_PHASES requries MULTILIB_INSECURE_INSTALL" |