mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
package/cegui: use plain assignemnt for first _CONF_OPTS
Commit689b9c1a7c(package/cegui: disable xerces support) added an unconditional assignment to _CONF_OPTS before all the conditional ones, but used the append-assignment instead of the traditional plain assignment. Fix that by removing the append-assignment. Use that opportunity to also move the first item of this multi-line assignment, to its own line. Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com> [yann.morin.1998@free.fr: - reference the exact commit that introduce the issue - also move the first item to its own line ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> (cherry picked from commit86fbba8b81) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
f6f1c7d2aa
commit
41f2185b12
@@ -9,7 +9,8 @@ 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 \
|
||||
|
||||
Reference in New Issue
Block a user