[oe-commits] Robert Schuster : llvm-common: Fixed installation path of helper script ( led to issues in OpenJDK build), bumped PR.

git version control git at git.openembedded.org
Wed Jul 14 06:08:01 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 5dfb4130a58f9b2a8b551bbfb98ee15fc7c11c86
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=5dfb4130a58f9b2a8b551bbfb98ee15fc7c11c86

Author: Robert Schuster <robertschuster at fsfe.org>
Date:   Tue Jul 13 11:58:02 2010 +0200

llvm-common: Fixed installation path of helper script (led to issues in OpenJDK build), bumped PR.

---

 recipes/llvm/llvm-common.bb |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/recipes/llvm/llvm-common.bb b/recipes/llvm/llvm-common.bb
index a2dad52..3de8f7f 100644
--- a/recipes/llvm/llvm-common.bb
+++ b/recipes/llvm/llvm-common.bb
@@ -2,6 +2,8 @@ PR = "r1"
 
 DESCRIPTION = "Helper script for OE's llvm support"
 
+PR = "r1"
+
 BBCLASSEXTEND = "native"
 
 SRC_URI = "file://llvm-config"
@@ -14,3 +16,15 @@ do_install() {
   install -d ${D}${bindir}
   install -m 0755 ${WORKDIR}/llvm-config ${D}${bindir}
 }
+
+# For llvm-common the script should end up in STAGING_BINDIR_CROSS
+# and for llvm-common-native it should be in STAGING_BINDIR. The
+# script works together with a script that is installed by a
+# corresponding llvm(-native) package.
+DESTINATION = "${STAGING_BINDIR_CROSS}"
+DESTINATION_virtclass-native = "${STAGING_BINDIR}"
+
+do_stage() {
+  install -d ${DESTINATION}
+  install -m 0755 ${WORKDIR}/llvm-config ${DESTINATION}
+}





More information about the Openembedded-commits mailing list