From patchwork Tue Jan 15 15:08:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v3,1/6] gcc: add missing dependency (zlib) Date: Tue, 15 Jan 2013 15:08:43 -0000 From: Constantin Musca X-Patchwork-Id: 42645 Message-Id: <0f0b8f62a26dc897e8b3f66ec27e348c14baae84.1358262293.git.constantinx.musca@intel.com> To: openembedded-core@lists.openembedded.org - add zlib to DEPENDS (it fails otherwise) Signed-off-by: Constantin Musca --- meta/recipes-devtools/gcc/gcc-4.7.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc index 378caf0..08a0103 100644 --- a/meta/recipes-devtools/gcc/gcc-4.7.inc +++ b/meta/recipes-devtools/gcc/gcc-4.7.inc @@ -1,6 +1,6 @@ require gcc-common.inc -PR = "r13" +PR = "r14" # Third digit in PV should be incremented after a minor release # happens from this branch on gcc e.g. currently its 4.7.1 @@ -20,7 +20,7 @@ BINV = "4.7.2" FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/gcc-4.7' ], d)}" -DEPENDS =+ "mpfr gmp libmpc" +DEPENDS =+ "mpfr gmp libmpc zlib" NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native" LICENSE="GPL-3.0-with-GCC-exception & GPLv3"