diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 12:07:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 12:07:53 +0100 |
commit | 1eae5b6c87cd4f825dba9d2526b34231d33b1e92 (patch) | |
tree | c04011b268ba2ddbdedc39e5fc2917441f0a019e /meta/recipes-devtools/python | |
parent | 942ab4bc77aa1bcdc7714ac6f6eba7ef7b1b93d4 (diff) | |
download | openembedded-core-1eae5b6c87cd4f825dba9d2526b34231d33b1e92.tar.gz openembedded-core-1eae5b6c87cd4f825dba9d2526b34231d33b1e92.tar.bz2 openembedded-core-1eae5b6c87cd4f825dba9d2526b34231d33b1e92.zip |
python-native: Use append instead of += so the lsb override for EXTRA_OECONF works as expected
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-native_2.7.3.bb b/meta/recipes-devtools/python/python-native_2.7.3.bb index bfdcd12687..b1614344c2 100644 --- a/meta/recipes-devtools/python/python-native_2.7.3.bb +++ b/meta/recipes-devtools/python/python-native_2.7.3.bb @@ -20,7 +20,7 @@ inherit native RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-core-native" -EXTRA_OECONF += " --bindir=${bindir}/${PN}" +EXTRA_OECONF_append " --bindir=${bindir}/${PN}" EXTRA_OEMAKE = '\ BUILD_SYS="" \ |