aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory M. Tuner <gmt@be-evil.net>2014-01-11 20:35:27 -0800
committerGregory M. Tuner <gmt@be-evil.net>2014-01-11 20:35:27 -0800
commit8bc20ab3c36da04ec2fea746da238f8276c33006 (patch)
tree8b676a26e292afff723f7fc7b5cdeb163051a92c /eclass/qt4-build.eclass
parenteclass/qt4-build: various debug-print additions (diff)
downloadgmt-8bc20ab3c36da04ec2fea746da238f8276c33006.tar.gz
gmt-8bc20ab3c36da04ec2fea746da238f8276c33006.tar.bz2
gmt-8bc20ab3c36da04ec2fea746da238f8276c33006.zip
eclass/qt4-build: do not clear myconf after qt4-build src_configure
qt4-build clears the myconf variable after folding it in, presumably to prevent one from accidentally applying the same myconf twice -- yet, that is precisely what we want to do when we are using it under multilib-build auspices. Were it not for the fact that we happened to be doing parallel foreach_abi iteration in this framework, it would never have worked, due to this -- certainly, that weird side effect is not one we wish to rely on or even that is likely to make it upstream. Signed-off-by: Gregory M. Tuner <gmt@be-evil.net>
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r--eclass/qt4-build.eclass1
1 files changed, 0 insertions, 1 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index fb39749..a184b7e 100644
--- a/eclass/qt4-build.eclass
+++ b/eclass/qt4-build.eclass
@@ -403,7 +403,6 @@ qt4-build_src_configure() {
fi
conf+=" ${myconf}"
- myconf=
echo ./configure ${conf}
./configure ${conf} || die "./configure failed"