You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
seem to be malformed. in qt-webengine, I used sed to replace them with the actual value of ${CONDA_BUILD_SYSROOT}, fully expanded.
I'm not sure if there is a right syntax to use here, or if we should it manaually do the replacement in the build script if we can't do it in the config file.
The text was updated successfully, but these errors were encountered:
I had to add the following code in the build script of qt-webengine to fixup the replacements for compilation:
pushd "${PREFIX}/lib"
for f in *.prl; do
sed -i "s,\$.CONDA_BUILD_SYSROOT),${CONDA_BUILD_SYSROOT},g" ${f};
done
popd
pushd "${PREFIX}/mkspecs"
for f in *.pri; do
sed -i "s,\$.CONDA_BUILD_SYSROOT),${CONDA_BUILD_SYSROOT},g" ${f}
done
popd
pushd
cd "${PREFIX}/mkspecs/modules"
for f in *.pri; do
sed -i "s,\$.CONDA_BUILD_SYSROOT),${CONDA_BUILD_SYSROOT},g" ${f}
done
popd
qt-main-feedstock/recipe/conda_build_config.yaml
Line 16 in 331aac5
seem to be malformed. in qt-webengine, I used
sed
to replace them with the actual value of${CONDA_BUILD_SYSROOT}
, fully expanded.I'm not sure if there is a right syntax to use here, or if we should it manaually do the replacement in the build script if we can't do it in the config file.
The text was updated successfully, but these errors were encountered: