aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/msn-cap
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-04-10 11:21:48 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2010-04-12 20:07:27 +0200
commit44985d56bc556786812a0a02d6219afd31a7381d (patch)
tree9dfeab9bd98dc6408835b7359861c8dc8ea6fffb /recipes/msn-cap
parenta8e889754b1bdb261b85ac7de1c1f929ad597c09 (diff)
downloadopenembedded-44985d56bc556786812a0a02d6219afd31a7381d.tar.gz
recipes: move checksums to recipes from checksums.ini
* fetch all *.bb with patched utils.bbclass appending all checksums found only in checksums.ini to recipe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/msn-cap')
-rw-r--r--recipes/msn-cap/msn-cap.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/msn-cap/msn-cap.bb b/recipes/msn-cap/msn-cap.bb
index 7b8edd5bc9..93c06356fa 100644
--- a/recipes/msn-cap/msn-cap.bb
+++ b/recipes/msn-cap/msn-cap.bb
@@ -18,3 +18,6 @@ do_install() {
install -d ${D}${bindir}
install -m 0755 msn-cap ${D}${bindir}/
}
+
+SRC_URI[md5sum] = "900be0beea498b18f03e2d67656d9d32"
+SRC_URI[sha256sum] = "f03c69e064f1269dfd5adbc668204d0a7e0eafb86317e293e9d6c1ce0a4f5761"
s64 OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gst-validate/0001-validate-fix-template-paths-when-buildir-is-differen.patch
blob: 400b8b0fea24d61d19679c79cbe1683c04d52c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From ac9d7d230effdb97870c2f317b3b45449bde1769 Mon Sep 17 00:00:00 2001
From: Anuj Mittal <am.devel@gmail.com>
Date: Wed, 11 Apr 2018 15:40:02 +0800
Subject: [PATCH] validate: fix template paths when buildir is different

Compilation just fails otherwise because it's not able to locate the files.

Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=795149]
Signed-off-by: Anuj Mittal <am.devel@gmail.com>

---
 gst/validate/Makefile.am | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gst/validate/Makefile.am b/gst/validate/Makefile.am
index 342730a..3fcc3e5 100644
--- a/gst/validate/Makefile.am
+++ b/gst/validate/Makefile.am
@@ -48,14 +48,17 @@ source_h = \
 nodist_libgstvalidate_@GST_API_VERSION@_la_SOURCES = $(built_source_make)
 nodist_libgstvalidate_@GST_API_VERSION@include_HEADERS = $(built_header_make)
 
+template_h = $(patsubst %,$(srcdir)/%, gst-validate-enum-types.h.template)
+template_c = $(patsubst %,$(srcdir)/%, gst-validate-enum-types.c.template)
+
 gst-validate-enum-types.h: $(source_h)
 	$(AM_V_GEN)$(GLIB_MKENUMS) \
-	--template gst-validate-enum-types.h.template \
+	--template $(template_h) \
 	$^ > gst-validate-enum-types.h
 
 gst-validate-enum-types.c: $(source_h)
 	$(AM_V_GEN)$(GLIB_MKENUMS) \
-	--template gst-validate-enum-types.c.template \
+	--template $(template_c) \
 	$^ > gst-validate-enum-types.c
 
 EXTRA_DIST= \
-- 
2.7.4