mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 14:59:55 +00:00
geis: add a patch to fix incorrect indentation issues and remove -Wno-error=misleading-indentation
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
90488aa54d
commit
80def85257
@@ -0,0 +1,14 @@
|
||||
--- geis-2.2.17/libgeis/geis_subscription.c.orig 2016-06-17 12:04:21.062938443 -0400
|
||||
+++ geis-2.2.17/libgeis/geis_subscription.c 2016-06-17 12:05:02.934939172 -0400
|
||||
@@ -237,9 +237,10 @@
|
||||
GeisSize i;
|
||||
for (i = 0; i < bag->sub_store_size; ++i)
|
||||
{
|
||||
- if (bag->sub_store[i])
|
||||
+ if (bag->sub_store[i]) {
|
||||
_subscription_unref(bag->sub_store[i]);
|
||||
bag->sub_store[i] = NULL;
|
||||
+ }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,13 +19,13 @@ REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
DEPENDS += "grail dbus-glib python3 virtual/libx11 libxext libxi libxcb dbus frame"
|
||||
|
||||
SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BPN}-${PV}.tar.xz\
|
||||
file://fix-indentation-for-gcc6.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "2ff9d76a3ea5794516bb02c9d1924faf"
|
||||
SRC_URI[sha256sum] = "8a60f5683852094038904e690d23cc5a90a980fc52da67f0f28890baa25c70eb"
|
||||
|
||||
EXTRA_OECONF = "--disable-integration-tests"
|
||||
TARGET_CFLAGS += "-Wno-error=misleading-indentation"
|
||||
|
||||
|
||||
FILES_${PN}-bin = "${bindir}"
|
||||
RDEPENDS_${PN}-bin = " \
|
||||
|
||||
Reference in New Issue
Block a user