summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2018-02-01 19:32:15 +0100
committerMichael Palimaka <kensington@gentoo.org>2018-02-04 00:36:56 +1100
commitaa2b16fe2e89650929f917247533a897386da14c (patch)
tree45f31b4dd975bee93751e3a1887a115ea4c07b0a /eclass
parent7ff82a5a2031a540bb774b0d27b6c4c4b4ddaa0a (diff)
downloadgentoo-aa2b16fe2e89650929f917247533a897386da14c.tar.gz
gentoo-aa2b16fe2e89650929f917247533a897386da14c.tar.xz
qt5-build.eclass: fix warning message
Diffstat (limited to 'eclass')
-rw-r--r--eclass/qt5-build.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 25d4136c80b..963dba571cb 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -804,7 +804,7 @@ qt5_install_module_qconfigs() {
doins "${T}"/${PN}-qconfig.pri
)
- if [[ ${PN} = qtcore && ${QT5_MINOR_VERSION} -ge 9 ]]; then
+ if [[ ${PN} == qtcore && ${QT5_MINOR_VERSION} -ge 9 ]]; then
insinto "${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/gentoo
newins "${D}${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/qconfig.pri qconfig-qtcore.pri
fi
@@ -832,12 +832,12 @@ qt5_regenerate_global_qconfigs() {
local qconfig_pri_orig=${ROOT%/}${QT5_ARCHDATADIR}/mkspecs/gentoo/qconfig-qtcore.pri
if [[ -f ${qconfig_pri} ]]; then
local x qconfig_add= qconfig_remove=
+ local qt_config new_qt_config=
if [[ -f ${qconfig_pri_orig} ]]; then
- local qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' "${qconfig_pri_orig}")
+ qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' "${qconfig_pri_orig}")
else
- local qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' "${qconfig_pri}")
+ qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' "${qconfig_pri}")
fi
- local new_qt_config=
# generate list of QT_CONFIG entries from the existing list,
# appending QCONFIG_ADD and excluding QCONFIG_REMOVE
@@ -857,6 +857,6 @@ qt5_regenerate_global_qconfigs() {
sed -i -e "s/^QT_CONFIG\s*+=.*/QT_CONFIG +=${new_qt_config}/" \
"${qconfig_pri}" || eerror "Failed to sed QT_CONFIG in ${qconfig_pri}"
else
- ewarn "${qconfig_pri} or ${qconfig_pri_orig} does not exist or is not a regular file"
+ ewarn "${qconfig_pri} does not exist or is not a regular file"
fi
}