diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-06 14:13:04 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-06 14:13:04 +0000 |
commit | e786d90fadc8cf2540f3e78ab12458a8c5818bbe (patch) | |
tree | a125e7ee91d9c2183f1fad1f0eacef12699e4704 | |
parent | e67be268191690af48aae59cb962b624fe52bfd9 (diff) | |
download | poky-e786d90fadc8cf2540f3e78ab12458a8c5818bbe.tar.gz |
gcc-cross: do not generate *-dev packages as they are broken (proper ones are generated by gcc recipe)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3967 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/gcc/gcc-package-cross.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/packages/gcc/gcc-package-cross.inc b/meta/packages/gcc/gcc-package-cross.inc index 75bbcfe48c..e1ffbd4e41 100644 --- a/meta/packages/gcc/gcc-package-cross.inc +++ b/meta/packages/gcc/gcc-package-cross.inc | |||
@@ -6,7 +6,8 @@ HAS_GFORTRAN ?= "no" | |||
6 | OLD_INHIBIT_PACKAGE_STRIP := "${INHIBIT_PACKAGE_STRIP}" | 6 | OLD_INHIBIT_PACKAGE_STRIP := "${INHIBIT_PACKAGE_STRIP}" |
7 | INHIBIT_PACKAGE_STRIP = "1" | 7 | INHIBIT_PACKAGE_STRIP = "1" |
8 | 8 | ||
9 | PACKAGES = "libgcc libgcc-dev libstdc++ libstdc++-dev libg2c libg2c-dev libgfortran libgfortran-dev" | 9 | # Do not generate *-dev packages as they are generated by 'gcc' recipe |
10 | PACKAGES = "libgcc libstdc++ libg2c libgfortran" | ||
10 | 11 | ||
11 | # Called from within gcc-cross, so libdir is set wrong | 12 | # Called from within gcc-cross, so libdir is set wrong |
12 | FILES_libg2c = "${target_libdir}/libg2c.so.*" | 13 | FILES_libg2c = "${target_libdir}/libg2c.so.*" |