diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-16 22:51:51 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-16 22:51:51 +0000 |
commit | 7edbe8118188fcfcca81d9e9f18eac9d441ee04a (patch) | |
tree | 3f95b7a9d82db31d6fe31362502a15df8eb24048 /meta/packages | |
parent | 0d5818ea8ecb9739f1804cdc6011c87d3c432d0f (diff) | |
download | poky-7edbe8118188fcfcca81d9e9f18eac9d441ee04a.tar.gz |
gupnp: Convert to new staging method
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/gupnp/gupnp_0.12.5.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/packages/gupnp/gupnp_0.12.5.bb b/meta/packages/gupnp/gupnp_0.12.5.bb index 4fd75d8932..a19bbce0ac 100644 --- a/meta/packages/gupnp/gupnp_0.12.5.bb +++ b/meta/packages/gupnp/gupnp_0.12.5.bb | |||
@@ -9,6 +9,9 @@ inherit autotools_stage pkgconfig | |||
9 | FILES_${PN} = "${libdir}/*.so.*" | 9 | FILES_${PN} = "${libdir}/*.so.*" |
10 | FILES_${PN}-dev += "${bindir}/gupnp-binding-tool" | 10 | FILES_${PN}-dev += "${bindir}/gupnp-binding-tool" |
11 | 11 | ||
12 | do_stage_append () { | 12 | SYSROOT_PREPROCESS_FUNCS += "gupnp_sysroot_preprocess" |
13 | install ${S}/tools/gupnp-binding-tool ${STAGING_BINDIR_NATIVE} | 13 | |
14 | } \ No newline at end of file | 14 | gupnp_sysroot_preprocess () { |
15 | install -d ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}/ | ||
16 | install -m 755 ${bindir}/gupnp-binding-tool ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}/ | ||
17 | } | ||