aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/meta/meta-newsdk
diff options
context:
space:
mode:
authorRandy Witt <randy.e.witt@intel.com>2014-08-27 15:51:09 -0700
committerRandy Witt <randy.e.witt@intel.com>2014-08-29 11:52:39 -0700
commit55c0c21692bc45900e6f97a7a45f13b6b2075bc3 (patch)
tree54d0de478690ee550c4abf5f051cb0b0be2ccc3e /meta/recipes-core/meta/meta-newsdk
parentc5a2ed20c4e18484e4cb20ad09a2c4189d0c67a1 (diff)
downloadopenembedded-core-contrib-rewitt/newsdk.tar.gz
sdktool.py: Remove hardcoded bitbake path.rewitt/newsdk
The layer that contains bitbake and the environment setup files is now injected during sdk creation using sed.
Diffstat (limited to 'meta/recipes-core/meta/meta-newsdk')
-rw-r--r--meta/recipes-core/meta/meta-newsdk/sdktool.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/recipes-core/meta/meta-newsdk/sdktool.py b/meta/recipes-core/meta/meta-newsdk/sdktool.py
index 8ed48c6346..6c31e3e866 100644
--- a/meta/recipes-core/meta/meta-newsdk/sdktool.py
+++ b/meta/recipes-core/meta/meta-newsdk/sdktool.py
@@ -10,9 +10,8 @@ import sys
import os
import argparse
-# FIXME these should be written out when producing the SDK
-bitbake_subdir = 'layers/poky/bitbake'
-init_subdir = 'layers/poky'
+bitbake_subdir = 'layers/BITBAKE_LAYER/bitbake'
+init_subdir = 'layers/BITBAKE_LAYER'
init_script = 'oe-init-build-env'
basepath = os.path.abspath(__file__)