mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/pyside: 6.9.3 fix whitespace separated array handling
Closes: https://bugs.gentoo.org/963939
Fixes: 5b25b05876
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
committed by
Ionen Wolkens
parent
eaf7b5aaab
commit
542062849e
@@ -324,7 +324,8 @@ python_configure_all() {
|
||||
done
|
||||
fi
|
||||
if [[ "${ENABLED_QT_MODULES[*]}" != *${modules}* ]]; then
|
||||
ENABLED_QT_MODULES+=( "${modules}" )
|
||||
# modules is whitespace separated. We expand implicitly.
|
||||
ENABLED_QT_MODULES+=( ${modules} )
|
||||
fi
|
||||
}
|
||||
# Enable specified qt modules
|
||||
|
||||
@@ -324,7 +324,8 @@ python_configure_all() {
|
||||
done
|
||||
fi
|
||||
if [[ "${ENABLED_QT_MODULES[*]}" != *${modules}* ]]; then
|
||||
ENABLED_QT_MODULES+=( "${modules}" )
|
||||
# modules is whitespace separated. We expand implicitly.
|
||||
ENABLED_QT_MODULES+=( ${modules} )
|
||||
fi
|
||||
}
|
||||
# Enable specified qt modules
|
||||
|
||||
Reference in New Issue
Block a user