diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-04-28 13:59:36 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-04-28 16:47:14 +0100 |
commit | 6458da896fffe33ab5db8cc2606e8225e16b0f36 (patch) | |
tree | 340e8d6ec9c0ed64eb422ab8ffda18815b3ae474 /meta/classes | |
parent | 29813a43b5c50bab571c3b593460c78aab65eac4 (diff) | |
download | poky-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.gz |
Fix references to CROSS_DIR now that it has been removed
CROSS_DIR is no longer removed so fix up classes, packages and documentation
which refer to it.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/cross-canadian.bbclass | 4 | ||||
-rw-r--r-- | meta/classes/cross.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/module_strip.bbclass | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index b7b449f478..56b0db8d6a 100644 --- a/meta/classes/cross-canadian.bbclass +++ b/meta/classes/cross-canadian.bbclass | |||
@@ -17,7 +17,7 @@ INHIBIT_DEFAULT_DEPS = "1" | |||
17 | STAGING_DIR_HOST = "${STAGING_DIR}/${HOST_SYS}-nativesdk" | 17 | STAGING_DIR_HOST = "${STAGING_DIR}/${HOST_SYS}-nativesdk" |
18 | STAGING_DIR_TARGET = "${STAGING_DIR}/${BASEPKG_TARGET_SYS}" | 18 | STAGING_DIR_TARGET = "${STAGING_DIR}/${BASEPKG_TARGET_SYS}" |
19 | 19 | ||
20 | PATH_append = ":${TMPDIR}/cross/${HOST_ARCH}/${bindir_cross}" | 20 | PATH_append = ":${TMPDIR}/sysroots/${HOST_ARCH}/${bindir_cross}" |
21 | PKGDATA_DIR = "${TMPDIR}/pkgdata/${HOST_ARCH}-nativesdk${HOST_VENDOR}-${HOST_OS}" | 21 | PKGDATA_DIR = "${TMPDIR}/pkgdata/${HOST_ARCH}-nativesdk${HOST_VENDOR}-${HOST_OS}" |
22 | PKGHIST_DIR = "${TMPDIR}/pkghistory/${HOST_ARCH}-nativesdk${HOST_VENDOR}-${HOST_OS}/" | 22 | PKGHIST_DIR = "${TMPDIR}/pkghistory/${HOST_ARCH}-nativesdk${HOST_VENDOR}-${HOST_OS}/" |
23 | 23 | ||
@@ -36,7 +36,7 @@ DEPENDS_GETTEXT = "gettext-native gettext-nativesdk" | |||
36 | 36 | ||
37 | # Path mangling needed by the cross packaging | 37 | # Path mangling needed by the cross packaging |
38 | # Note that we use := here to ensure that libdir and includedir are | 38 | # Note that we use := here to ensure that libdir and includedir are |
39 | # target paths, not CROSS_DIR paths. | 39 | # target paths. |
40 | target_libdir := "${libdir}" | 40 | target_libdir := "${libdir}" |
41 | target_includedir := "${includedir}" | 41 | target_includedir := "${includedir}" |
42 | target_base_libdir := "${base_libdir}" | 42 | target_base_libdir := "${base_libdir}" |
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass index 30f136f150..5720cdbcc6 100644 --- a/meta/classes/cross.bbclass +++ b/meta/classes/cross.bbclass | |||
@@ -32,7 +32,7 @@ DEPENDS_GETTEXT = "gettext-native" | |||
32 | 32 | ||
33 | # Path mangling needed by the cross packaging | 33 | # Path mangling needed by the cross packaging |
34 | # Note that we use := here to ensure that libdir and includedir are | 34 | # Note that we use := here to ensure that libdir and includedir are |
35 | # target paths, not CROSS_DIR paths. | 35 | # target paths. |
36 | target_libdir := "${libdir}" | 36 | target_libdir := "${libdir}" |
37 | target_includedir := "${includedir}" | 37 | target_includedir := "${includedir}" |
38 | target_base_libdir := "${base_libdir}" | 38 | target_base_libdir := "${base_libdir}" |
diff --git a/meta/classes/module_strip.bbclass b/meta/classes/module_strip.bbclass index 63e6569799..7636f1f403 100644 --- a/meta/classes/module_strip.bbclass +++ b/meta/classes/module_strip.bbclass | |||
@@ -9,8 +9,8 @@ do_strip_modules () { | |||
9 | if ! [ -d "$module" ] ; then | 9 | if ! [ -d "$module" ] ; then |
10 | ${STRIP} -v -g $module | 10 | ${STRIP} -v -g $module |
11 | fi | 11 | fi |
12 | done | 12 | done |
13 | # NM="${CROSS_DIR}/bin/${HOST_PREFIX}nm" OBJCOPY="${CROSS_DIR}/bin/${HOST_PREFIX}objcopy" strip_module $modules | 13 | # NM="${STAGING_BINDIR_NATIVE}/${HOST_PREFIX}nm" OBJCOPY="${STAGING_BINDIR_NATIVE}/${HOST_PREFIX}objcopy" strip_module $modules |
14 | fi | 14 | fi |
15 | fi | 15 | fi |
16 | done | 16 | done |