diff options
| author | Mark Asselstine <mark.asselstine@windriver.com> | 2014-03-25 15:35:16 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-03-26 09:26:45 -0400 |
| commit | d51c45ef928ccc33bdfe65ca13c78c42be01705a (patch) | |
| tree | 8a9056b79424e17bc4f0b935110304cb63e70e72 /recipes-support/spice/spice_git.bb | |
| parent | 2604199265138f6c8522a7c694d218d1f639dfbb (diff) | |
| download | meta-cloud-services-d51c45ef928ccc33bdfe65ca13c78c42be01705a.tar.gz | |
spice: updates to work with latest autotools
We were getting several errors during configure related to
autoreconf. We need to create an empty m4 directory as well
as enable the subdir-objects option to allow configure to
complete successfully. There were indications that this second
issue was fixed upstream but even using the latest git trees
I am seeing this failure.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-support/spice/spice_git.bb')
| -rw-r--r-- | recipes-support/spice/spice_git.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/recipes-support/spice/spice_git.bb b/recipes-support/spice/spice_git.bb index 900259a..24870a1 100644 --- a/recipes-support/spice/spice_git.bb +++ b/recipes-support/spice/spice_git.bb | |||
| @@ -29,7 +29,10 @@ SRC_URI = "git://anongit.freedesktop.org/spice/spice;name=spice \ | |||
| 29 | git://anongit.freedesktop.org/spice/spice-protocol;destsuffix=git/spice-common/spice-protocol;name=spice-protocol \ | 29 | git://anongit.freedesktop.org/spice/spice-protocol;destsuffix=git/spice-common/spice-protocol;name=spice-protocol \ |
| 30 | " | 30 | " |
| 31 | 31 | ||
| 32 | SRC_URI += "file://spice-fix-CVE-2013-4282.patch" | 32 | SRC_URI += " \ |
| 33 | file://spice-fix-CVE-2013-4282.patch \ | ||
| 34 | file://configure.ac-add-subdir-objects-to-AM_INIT_AUTOMAKE.patch \ | ||
| 35 | " | ||
| 33 | 36 | ||
| 34 | S = "${WORKDIR}/git" | 37 | S = "${WORKDIR}/git" |
| 35 | 38 | ||
| @@ -37,9 +40,6 @@ inherit autotools gettext pythonnative python-dir pkgconfig | |||
| 37 | 40 | ||
| 38 | DEPENDS += "python-native celt051 python-pyparsing jpeg pixman alsa-lib glib-2.0" | 41 | DEPENDS += "python-native celt051 python-pyparsing jpeg pixman alsa-lib glib-2.0" |
| 39 | 42 | ||
| 40 | EXTRA_OECONF_append = " -Wnone" | ||
| 41 | EXTRA_AUTORECONF_append = " -Wnone" | ||
| 42 | |||
| 43 | export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" | 43 | export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" |
| 44 | export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages" | 44 | export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages" |
| 45 | 45 | ||
| @@ -56,6 +56,10 @@ LICENSE_${PN}-protocol = "BSD" | |||
| 56 | FILES_${PN}-protocol += "${includedir}/spice-1" | 56 | FILES_${PN}-protocol += "${includedir}/spice-1" |
| 57 | FILES_${PN}-protocol += "${datadir}/pkgconfig" | 57 | FILES_${PN}-protocol += "${datadir}/pkgconfig" |
| 58 | 58 | ||
| 59 | do_configure_prepend() { | ||
| 60 | mkdir -p ${S}/spice-common/spice-protocol/m4 | ||
| 61 | } | ||
| 62 | |||
| 59 | do_install_append() { | 63 | do_install_append() { |
| 60 | cd ${S}/spice-common/spice-protocol | 64 | cd ${S}/spice-common/spice-protocol |
| 61 | oe_runmake DESTDIR="${D}" install | 65 | oe_runmake DESTDIR="${D}" install |
