void-packages/srcpkgs/qt5/patches/hack-compiler_version_echo.patch
Juergen Buchmueller ccdcad45ca qt5: update to 5.7.1
Important changes: qt5-enginio and qt5-enginio-devel are gone.
qt5-plugin-gtk is gone. New submodules are qt5-charts, qt5-datavis3d,
qt5-gamepad, qt5-scxml and qt5-virtualkeyboard.

Packages which require updates: python-PyQt5, qtcreator-full
2016-12-22 10:45:30 +01:00

12 lines
572 B
Diff

--- qtwebengine/src/3rdparty/chromium/build/compiler_version.py 2016-11-07 15:46:18.000000000 +0100
+++ qtwebengine/src/3rdparty/chromium/build/compiler_version.py 2016-12-21 17:11:17.027999078 +0100
@@ -116,6 +116,9 @@
if mode == 'host':
environments = ['CXX_host'] + environments;
compiler = GetEnvironFallback(environments, 'c++')
+ # Hack: remove leading "@echo compiling xyz && " from compiler string
+ if compiler.startswith("@echo"):
+ compiler = compiler[compiler.find("&&")+3:]
if compiler:
compiler_version = GetVersion(compiler, tool)