Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/cegui: override first _CONF_OPTS instead of appending
@ 2021-02-18 17:59 Bartosz Bilas
  2021-02-19 21:48 ` Yann E. MORIN
  2021-02-27 17:58 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Bartosz Bilas @ 2021-02-18 17:59 UTC (permalink / raw)
  To: buildroot

During the package update, there was a mistake
and we appended the options to the first CONF_OPTS
variable instead of overriding it.
Fix that by removing an append-assignment.

Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
---
 package/cegui/cegui.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/cegui/cegui.mk b/package/cegui/cegui.mk
index 23919e0151..0596d6566b 100644
--- a/package/cegui/cegui.mk
+++ b/package/cegui/cegui.mk
@@ -9,7 +9,7 @@ CEGUI_SITE = $(call github,cegui,cegui,v$(CEGUI_VERSION))
 CEGUI_LICENSE = MIT
 CEGUI_LICENSE_FILES = COPYING
 CEGUI_INSTALL_STAGING = YES
-CEGUI_CONF_OPTS += -DCEGUI_BUILD_XMLPARSER_XERCES=OFF \
+CEGUI_CONF_OPTS = -DCEGUI_BUILD_XMLPARSER_XERCES=OFF \
 	-DCEGUI_HAS_MINIZIP_RESOURCE_PROVIDER=OFF \
 	-DCEGUI_BUILD_RENDERER_OGRE=OFF
 CEGUI_DEPENDENCIES = glm \
-- 
2.30.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-27 17:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-18 17:59 [Buildroot] [PATCH] package/cegui: override first _CONF_OPTS instead of appending Bartosz Bilas
2021-02-19 21:48 ` Yann E. MORIN
2021-02-27 17:58 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox