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/packages/gcc/gcc-package-cross.inc | |
parent | 29813a43b5c50bab571c3b593460c78aab65eac4 (diff) | |
download | openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.gz openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.tar.bz2 openembedded-core-6458da896fffe33ab5db8cc2606e8225e16b0f36.zip |
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/packages/gcc/gcc-package-cross.inc')
-rw-r--r-- | meta/packages/gcc/gcc-package-cross.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/gcc/gcc-package-cross.inc b/meta/packages/gcc/gcc-package-cross.inc index 04ae78a88b..449c8b548b 100644 --- a/meta/packages/gcc/gcc-package-cross.inc +++ b/meta/packages/gcc/gcc-package-cross.inc @@ -13,7 +13,7 @@ do_install () { # Remove things we don't need but keep share/java for d in info man share/doc share/locale share/man share/info; do - rm -rf ${D}${CROSS_DIR}/$d + rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/$d done # gcc-runtime requires some headers, we stash them here |