From ddcf6aaa1ac7b4c81ff128f2e7d65218011028e5 Mon Sep 17 00:00:00 2001 From: Kevin Kofler Date: Jun 21 2017 01:59:44 +0000 Subject: Fix FTBFS on F26 (and lower) due to debugedit failure Remove the double slashes from #include lines in 2 files in WebRTC. --- diff --git a/qt5-qtwebengine.spec b/qt5-qtwebengine.spec index dc88b37..c824a44 100644 --- a/qt5-qtwebengine.spec +++ b/qt5-qtwebengine.spec @@ -362,6 +362,10 @@ BuildArch: noarch # fix // in #include in content/renderer/gpu to avoid debugedit failure sed -i -e 's!gpu//!gpu/!g' \ src/3rdparty/chromium/content/renderer/gpu/compositor_forwarding_message_filter.cc +# and another one in 2 files in WebRTC +sed -i -e 's!audio_processing//!audio_processing/!g' \ + src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/utility/ooura_fft.cc \ + src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/utility/ooura_fft_sse2.cc # remove ./ from #line commands in ANGLE to avoid debugedit failure (?) sed -i -e 's!\./!!g' \ src/3rdparty/chromium/third_party/angle/src/compiler/preprocessor/Tokenizer.cpp \