From 390d2f070fbda51f55b300bb328bf551a370ed7d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 21 Jan 2020 16:15:26 +0200 Subject: [PATCH] qt5: Don't link against execinfo.h take two --- extra/qt5/build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extra/qt5/build b/extra/qt5/build index 7c6dacb2..e9205607 100755 --- a/extra/qt5/build +++ b/extra/qt5/build @@ -1,6 +1,8 @@ #!/bin/sh -e -export CXXFLAGS="$CXXFLAGS -DQLOGGING_HAVE_BACKTRACE=0" +# Don't link against execinfo.h. +sed -i 's/define QLOG/define N/g' \ + ./src/corelib/global/qlogging.cpp ./configure \ -confirm-license \