diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-01-18 16:17:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-21 11:18:37 +0000 |
commit | bc9d2fbfd4eaad0df5647dd5d07dfb9fcff80ff3 (patch) | |
tree | 932aff7c30893ed2625143e53a968521c8ebf8d7 /meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb | |
parent | b1025bd5385de70ba1e1fc8ec9d2fb59d7fe1e91 (diff) | |
download | poky-bc9d2fbfd4eaad0df5647dd5d07dfb9fcff80ff3.tar.gz |
staging: Use relative path in sysroot-destdir for target recipes
Original we used absolute path in sysroot-destdir for both native and
target recipes. This commit changes target recipes to use relative path
which is same as the image directory.
[sgw: merged with libtool sysroot work]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb')
-rw-r--r-- | meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb b/meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb index 9beb46ed11..9f2d717c76 100644 --- a/meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb +++ b/meta/recipes-connectivity/gupnp/gupnp_0.14.0.bb | |||
@@ -23,7 +23,7 @@ FILES_${PN}-dev += "${bindir}/gupnp-binding-tool" | |||
23 | SYSROOT_PREPROCESS_FUNCS += "gupnp_sysroot_preprocess" | 23 | SYSROOT_PREPROCESS_FUNCS += "gupnp_sysroot_preprocess" |
24 | 24 | ||
25 | gupnp_sysroot_preprocess () { | 25 | gupnp_sysroot_preprocess () { |
26 | install -d ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}/ | 26 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ |
27 | install -m 755 ${D}${bindir}/gupnp-binding-tool ${SYSROOT_DESTDIR}${STAGING_BINDIR_CROSS}/ | 27 | install -m 755 ${D}${bindir}/gupnp-binding-tool ${SYSROOT_DESTDIR}${bindir_crossscripts}/ |
28 | } | 28 | } |
29 | 29 | ||