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:
Paul Zander
2025-10-08 18:19:23 +02:00
committed by Ionen Wolkens
parent eaf7b5aaab
commit 542062849e
2 changed files with 4 additions and 2 deletions

View File

@@ -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

View File

@@ -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