From 33acee39fe4b9292105f12d888188323f7c25f9b Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Thu, 13 Feb 2014 09:57:24 -0800 Subject: [PATCH] Silence makefile override warnings qserialport and qextserialport use the pattern of += into PUBLIC_HEADERS and PRIVATE_HEADERS. This leads to the same header being included twice. Which in turn causes the rule for moc in the makefile to be added twice, hence the warning. Using *= instead of += removes the duplication. --- libs/serialport/qserialport.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/serialport/qserialport.pri b/libs/serialport/qserialport.pri index 9de6a7ab0..1210834c2 100644 --- a/libs/serialport/qserialport.pri +++ b/libs/serialport/qserialport.pri @@ -55,4 +55,4 @@ unix:!symbian { } } -HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS +HEADERS *= $$PUBLIC_HEADERS $$PRIVATE_HEADERS -- 2.22.0