diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-12-16 16:57:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-17 09:57:04 +0000 |
commit | f032e229a31a7ff6c2bebddf7d10cd5da1d43a41 (patch) | |
tree | beab15d8d766f59bdade265685d6a617b67d941d /meta | |
parent | de43650c29db757dbd6c30b484fd2d3d0a49b374 (diff) | |
download | poky-f032e229a31a7ff6c2bebddf7d10cd5da1d43a41.tar.gz |
libfm: fix configure error if native vala is absent
(From OE-Core rev: 654e5468493d46d5529098ab5d78164a7545281e)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libfm/libfm/0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch | 28 | ||||
-rw-r--r-- | meta/recipes-support/libfm/libfm_1.2.5.bb | 3 |
2 files changed, 30 insertions, 1 deletions
diff --git a/meta/recipes-support/libfm/libfm/0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch b/meta/recipes-support/libfm/libfm/0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch new file mode 100644 index 0000000000..fb91d90cf2 --- /dev/null +++ b/meta/recipes-support/libfm/libfm/0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 23c6e9df611c86a5e97079e1b88c7a18474bf0bc Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Fri, 16 Dec 2016 16:52:04 +0200 | ||
4 | Subject: [PATCH] Correctly check the stamp file that indicates if we need to | ||
5 | re-build vala code | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
9 | --- | ||
10 | configure.ac | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/configure.ac b/configure.ac | ||
14 | index d043b3d..0e85590 100644 | ||
15 | --- a/configure.ac | ||
16 | +++ b/configure.ac | ||
17 | @@ -42,7 +42,7 @@ AM_COND_IF(EXTRALIB_ONLY, | ||
18 | [enable_actions=no]) | ||
19 | if test x"$enable_actions" = xyes; then | ||
20 | dnl no vala compiler required when sources are from dist tarball | ||
21 | - if test -f src/actions/libfmactions_la_vala.stamp; then | ||
22 | + if test -f $srcdir/src/actions/libfmactions_la_vala.stamp; then | ||
23 | AM_PROG_VALAC | ||
24 | else | ||
25 | AM_PROG_VALAC([0.13.0]) | ||
26 | -- | ||
27 | 2.10.2 | ||
28 | |||
diff --git a/meta/recipes-support/libfm/libfm_1.2.5.bb b/meta/recipes-support/libfm/libfm_1.2.5.bb index 638c364c87..aca59e1476 100644 --- a/meta/recipes-support/libfm/libfm_1.2.5.bb +++ b/meta/recipes-support/libfm/libfm_1.2.5.bb | |||
@@ -11,7 +11,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4641e94ec96f98fabc56ff9cc48be14b \ | |||
11 | SECTION = "x11/libs" | 11 | SECTION = "x11/libs" |
12 | DEPENDS = "glib-2.0 pango gtk+3 menu-cache intltool-native libexif libfm-extra gettext-native" | 12 | DEPENDS = "glib-2.0 pango gtk+3 menu-cache intltool-native libexif libfm-extra gettext-native" |
13 | 13 | ||
14 | SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.xz" | 14 | SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/libfm-${PV}.tar.xz \ |
15 | file://0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch" | ||
15 | 16 | ||
16 | SRC_URI[md5sum] = "a1ba9ae5e920f38b647dd511edd6c807" | 17 | SRC_URI[md5sum] = "a1ba9ae5e920f38b647dd511edd6c807" |
17 | SRC_URI[sha256sum] = "c706bb1020cf5f2d6f5a9226f692ce1985947134dcf2bde64278bd0420779b5a" | 18 | SRC_URI[sha256sum] = "c706bb1020cf5f2d6f5a9226f692ce1985947134dcf2bde64278bd0420779b5a" |