summaryrefslogtreecommitdiffstats
path: root/meta-efl/recipes-efl/efl/elementary
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2014-01-31 21:14:29 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2014-02-23 23:21:14 +0100
commit5c5bdbca17762ec43da6fcc95831878cdf1aba53 (patch)
tree92d129cb8010334b8cc9e7ba78521ef30c54cf64 /meta-efl/recipes-efl/efl/elementary
parent5870add0ca8328217626209de7fc146a7a3164d8 (diff)
downloadmeta-openembedded-5c5bdbca17762ec43da6fcc95831878cdf1aba53.tar.gz
elementary: upgrade to 1.8.4
* Elementary 1.8.3 release http://sourceforge.net/mailarchive/message.php?msg_id=31826305 * Elementary 1.8.4 release http://sourceforge.net/mailarchive/message.php?msg_id=31895179 * introduce elementary-native for elm-prefs_cc and elementary_codegen binary Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/efl/elementary')
-rw-r--r--meta-efl/recipes-efl/efl/elementary/0001-Makefile-Use-elm_prefs_cc-and-elementary_codegen-def.patch61
1 files changed, 61 insertions, 0 deletions
diff --git a/meta-efl/recipes-efl/efl/elementary/0001-Makefile-Use-elm_prefs_cc-and-elementary_codegen-def.patch b/meta-efl/recipes-efl/efl/elementary/0001-Makefile-Use-elm_prefs_cc-and-elementary_codegen-def.patch
new file mode 100644
index 0000000000..e3fba9b28f
--- /dev/null
+++ b/meta-efl/recipes-efl/efl/elementary/0001-Makefile-Use-elm_prefs_cc-and-elementary_codegen-def.patch
@@ -0,0 +1,61 @@
1From 53c7046933d1b622a7f99e70a08a0bf46e38369f Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Sat, 11 Jan 2014 12:55:59 +0100
4Subject: [PATCH] Makefile: Use elm_prefs_cc and elementary_codegen defined in
5 configure
6
7* using binaries from top_buildir doesn't work when cross-compiling elementary
8 where we need to pass native binaries in configure params
9
10Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
11---
12 data/objects/Makefile.am | 2 +-
13 doc/widgets/Makefile.am | 2 +-
14 src/examples/Makefile.am | 4 ++--
15 3 files changed, 4 insertions(+), 4 deletions(-)
16
17diff --git a/data/objects/Makefile.am b/data/objects/Makefile.am
18index c6a775d..88c4f1a 100644
19--- a/data/objects/Makefile.am
20+++ b/data/objects/Makefile.am
21@@ -11,7 +11,7 @@ filesdir = $(datadir)/elementary/objects
22
23 files_DATA = test.edj test_external.edj multip.edj cursors.edj font_preview.edj postit_ent.edj multibuttonentry.edj test_prefs.edj test_prefs.epb test_focus_custom.edj
24
25-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
26+ELM_PREFS_CC = @elm_prefs_cc@
27
28 EXTRA_DIST = \
29 test.edc \
30diff --git a/doc/widgets/Makefile.am b/doc/widgets/Makefile.am
31index c1508b8..c0544f9 100644
32--- a/doc/widgets/Makefile.am
33+++ b/doc/widgets/Makefile.am
34@@ -19,7 +19,7 @@ AM_CPPFLAGS = \
35 @ELEMENTARY_EWEATHER_CFLAGS@ \
36 @ELEMENTARY_EMAP_CFLAGS@
37
38-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
39+ELM_PREFS_CC = @elm_prefs_cc@
40
41 noinst_DATA = widget_preview_prefs.epb
42
43diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am
44index 7184ca1..ce80a46 100644
45--- a/src/examples/Makefile.am
46+++ b/src/examples/Makefile.am
47@@ -33,9 +33,9 @@ EDJE_FLAGS_VERBOSE_0 =
48 EDJE_FLAGS_VERBOSE_1 = -v
49 EDJE_FLAGS = $(EDJE_FLAGS_VERBOSE_$(V))
50
51-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
52+ELM_PREFS_CC = @elm_prefs_cc@
53
54-ELEMENTARY_CODEGEN = $(top_builddir)/src/bin/@ELEMENTARY_CODEGEN_PRG@
55+ELEMENTARY_CODEGEN = @elementary_codegen@
56 ELEMENTARY_CODEGEN_FLAGS = --prefix=codegen_example
57
58 SRCS = \
59--
601.8.5.2
61