diff options
author | Zhenhua Luo <zhenhua.luo@freescale.com> | 2013-11-19 17:28:11 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-26 12:14:08 -0500 |
commit | e16c40c1a8fda5e8e1f2a843d74e770062cde6d3 (patch) | |
tree | 174cb0996141164625352a76d699630b3b9da4fc | |
parent | c46d6acbf606e45a3b8fec4f3d1d9070257e47ce (diff) | |
download | meta-cloud-services-grizzly.tar.gz meta-cloud-services-grizzly.tar.bz2 meta-cloud-services-grizzly.zip |
python-horizon: remove nodejs from RDEPENDS of powerpc archgrizzly
Nodejs only supports arm, x86 and ia32 archs, it doesn't support powerpc.
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-horizon_2013.1.3.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-horizon_2013.1.3.bb b/meta-openstack/recipes-devtools/python/python-horizon_2013.1.3.bb index fdd0bd0..edd8dae 100644 --- a/meta-openstack/recipes-devtools/python/python-horizon_2013.1.3.bb +++ b/meta-openstack/recipes-devtools/python/python-horizon_2013.1.3.bb @@ -63,8 +63,7 @@ FILES_${SRCNAME} = "${bindir}/* \ ${datadir}/* \ " -RDEPENDS_${PN} += "nodejs \ - python-django \ +RDEPENDS_${PN} += " python-django \ python-django-appconf \ python-django-compressor \ python-django-openstack-auth \ @@ -80,6 +79,11 @@ RDEPENDS_${PN} += "nodejs \ python-lockfile \ " +RDEPENDS_${PN}_arm += " nodejs" +RDEPENDS_${PN}_i686 += " nodejs" +RDEPENDS_${PN}_x86-64 += " nodejs" +RDEPENDS_${PN}_ia32 += " nodejs" + RDEPENDS_${SRCNAME} = "${PN}" INITSCRIPT_PACKAGES = "${SRCNAME}" |