From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Naumann Date: Tue, 18 Feb 2020 10:43:17 +0100 Subject: [Buildroot] [PATCH v6 06/28] package/qwt: Add missing qt5svg dependency In-Reply-To: <20200217225611.571c3eec@windsurf> References: <20200217212350.29750-1-anaumann@ultratronik.de> <20200217212350.29750-7-anaumann@ultratronik.de> <20200217225611.571c3eec@windsurf> Message-ID: <2c74699f-c4d5-d4ed-8c4f-16594484c6f6@andin.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hi Am 17.02.20 um 22:56 schrieb Thomas Petazzoni: > On Mon, 17 Feb 2020 22:23:28 +0100 > Andreas Naumann wrote: > >> Signed-off-by: Andreas Naumann >> --- >> package/qwt/qwt.mk | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/package/qwt/qwt.mk b/package/qwt/qwt.mk >> index 1fec17b19a..50df7e2642 100644 >> --- a/package/qwt/qwt.mk >> +++ b/package/qwt/qwt.mk >> @@ -19,6 +19,7 @@ QWT_CONFIG += -e 's%/features%/mkspecs/features%' >> >> ifeq ($(BR2_PACKAGE_QWT_SVG),y) >> QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtSvg.*$$/QWT_CONFIG += QwtSvg/' >> +QWT_DEPENDENCIES += qt5svg >> else >> QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtSvg.*$$/\# QWT_CONFIG += QwtSvg/' >> endif > > This looks like a fix we should apply today. Why doesn't this trigger > any autobuilder failure? Probably because qwt is built after qt5svg (more or less by chance). However, in per-package mode this becomes a problem because the libs are not copied to the qwt per-package staging. regards, Andreas > > Thomas >