diff options
author | Davide Pesavento <pesa@gentoo.org> | 2014-10-09 18:59:56 +0200 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2014-10-09 18:59:56 +0200 |
commit | 355c4da66275b190d76d97aff1c008667f5c1e0b (patch) | |
tree | c101e0aa9306f33c84cfff9f62ea614f31e7d17d /eclass/qt5-build.eclass | |
parent | [qt5-build.eclass] Restrict mirror for qtwebkit wrt bug #524584. (diff) | |
download | qt-355c4da66275b190d76d97aff1c008667f5c1e0b.tar.gz qt-355c4da66275b190d76d97aff1c008667f5c1e0b.tar.bz2 qt-355c4da66275b190d76d97aff1c008667f5c1e0b.zip |
[qt5-build.eclass] Fix assignments to RESTRICT.
Diffstat (limited to 'eclass/qt5-build.eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 9382f76a..4da38878 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -71,8 +71,8 @@ EGIT_REPO_URI=( IUSE="debug test" -[[ ${PN} == qtwebkit ]] && RESTRICT="mirror" # bug 524584 -[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT="test" # bug 457182 +[[ ${PN} == qtwebkit ]] && RESTRICT+=" mirror" # bug 524584 +[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT+=" test" # bug 457182 DEPEND=" dev-lang/perl |