diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 12:24:56 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 12:24:56 +0100 |
commit | 6d3a5ac67980d0bfb0091a5ee69449eb4f32390f (patch) | |
tree | 5f29203ec5b4fe74bdcdfb6e4caedd867fc0d8d6 | |
parent | ade4c8a3b2346b54e7103ea6351464d3fd23307b (diff) | |
download | openembedded-core-6d3a5ac67980d0bfb0091a5ee69449eb4f32390f.tar.gz openembedded-core-6d3a5ac67980d0bfb0091a5ee69449eb4f32390f.tar.bz2 openembedded-core-6d3a5ac67980d0bfb0091a5ee69449eb4f32390f.zip |
meta/layer.conf: Fix PATH to use POKYBASE
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | meta/conf/layer.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 30068d6aec..c0298f5288 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -9,12 +9,12 @@ BBFILE_COLLECTIONS += "normal" BBFILE_PATTERN_normal := "^${LAYERDIR}/" BBFILE_PRIORITY_normal = "5" -# Add scripts to PATH -PATH := "${PATH}:${LAYERDIR}/scripts" - # Set a variable to get to the top of the metadata location POKYBASE := ${@os.path.normpath("${LAYERDIR}/../")} +# Add scripts to PATH +PATH := "${PATH}:${POKYBASE}/scripts" + # Set path to qemu image tests included in this layer QEMUIMAGETESTS := "${POKYBASE}/scripts/qemuimage-tests" |