[oe-commits] Bian Naimeng : gcc-source: fix bug to avoid building error.

git at git.openembedded.org git at git.openembedded.org
Mon Mar 9 17:59:38 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 704fd8f1efbd7fa9368cfe4f956abf24cd58664e
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=704fd8f1efbd7fa9368cfe4f956abf24cd58664e

Author: Bian Naimeng <biannm at cn.fujitsu.com>
Date:   Mon Mar  2 19:34:48 2015 +0800

gcc-source: fix bug to avoid building error.

gcc-source don't do do_package_write_rpm, so we should set
PACKAGES = "" to avoid the building error if we want generate srpm,
otherwise, we get the error as below.

ERROR: Task do_deploy_archives in meta/recipes-devtools/gcc/gcc-source_4.9.bb \
       depends upon non-existent task do_package_write_rpm in \
       meta/recipes-devtools/gcc/gcc-source_4.9.bb

Signed-off-by: Bian Naimeng <biannm at cn.fujitsu.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/recipes-devtools/gcc/gcc-source.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/gcc/gcc-source.inc b/meta/recipes-devtools/gcc/gcc-source.inc
index 968830a..10e9285 100644
--- a/meta/recipes-devtools/gcc/gcc-source.inc
+++ b/meta/recipes-devtools/gcc/gcc-source.inc
@@ -19,6 +19,7 @@ STAMPCLEAN = "${STAMPS_DIR}/work-shared/gcc-[0-9]*-*"
 
 INHIBIT_DEFAULT_DEPS = "1"
 DEPENDS = ""
+PACKAGES = ""
 
 python do_preconfigure () {
     import subprocess



More information about the Openembedded-commits mailing list