diff options
author | Ross Burton <ross.burton@intel.com> | 2012-12-14 14:51:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-14 15:04:42 +0000 |
commit | 5c258d9ad5fd94b193a8054b112bbdcfcee57358 (patch) | |
tree | d043c9b3755207787e88528dd7f32269897445b7 /meta/recipes-devtools/pkgconfig | |
parent | ed4e991317ab11e8c0e6869f2be6426cc3d28ccb (diff) | |
download | openembedded-core-5c258d9ad5fd94b193a8054b112bbdcfcee57358.tar.gz openembedded-core-5c258d9ad5fd94b193a8054b112bbdcfcee57358.tar.bz2 openembedded-core-5c258d9ad5fd94b193a8054b112bbdcfcee57358.zip |
pkgconfig: fix out-of-tree builds
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/pkgconfig')
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig.inc b/meta/recipes-devtools/pkgconfig/pkgconfig.inc index 27d407170c..c54e325ec7 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig.inc +++ b/meta/recipes-devtools/pkgconfig/pkgconfig.inc @@ -27,7 +27,8 @@ EXTRA_OECONF_class-nativesdk = "--disable-legacy-scripts" acpaths = "-I ." do_configure_prepend () { - install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h glib-1.2.10/ + mkdir --parents ${B}/glib-1.2.10 + install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h ${B}/glib-1.2.10/ } BBCLASSEXTEND = "native nativesdk" |