diff options
author | David Karlstrom <daka@thg.se> | 2005-07-25 02:02:23 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-25 02:02:23 +0000 |
commit | 89f67549b36651ad5aed97d4a877bb145f472d1d (patch) | |
tree | 7ee292978841b60444c4aef9d20cfe65d1756012 /packages | |
parent | b8ad3ab8ac0ac1cc8e01b30d91e9ced5ed503c77 (diff) |
Add binutils-symlinks, remove the libc.so and libpthread.so fix since things work without it
Diffstat (limited to 'packages')
-rw-r--r-- | packages/meta/openslug-native.bb | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/packages/meta/openslug-native.bb b/packages/meta/openslug-native.bb index da5379da81..e03e211560 100644 --- a/packages/meta/openslug-native.bb +++ b/packages/meta/openslug-native.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Packages that are required for the OpenSlug native build environment" LICENSE = MIT -PR = "r3" +PR = "r4" INHIBIT_DEFAULT_DEPS = "1" ALLOW_EMPTY = 1 @@ -9,7 +9,7 @@ PACKAGES = "${PN}" OPENSLUG_NATIVE = "\ automake \ bash \ - binutils binutils-dev \ + binutils binutils-dev binutils-symlinks \ bison \ bzip2 \ coreutils \ @@ -41,13 +41,3 @@ OPENSLUG_NATIVE = "\ RDEPENDS = '${OPENSLUG_NATIVE}' -pkg_postinst_${PN} () { - # Fix some strange .so-files with strange comments in them. This should - # really be done in the packages providing these, but untill that, this - # works, and will not break anything when it actually gets fixed - tail -n 2 /usr/lib/libc.so > /tmp/tmpfile - mv /tmp/tmpfile /usr/lib/libc.so - tail -n 2 /usr/lib/libpthread.so > /tmp/tmpfile - mv /tmp/tmpfile /usr/lib/libpthread.so -} - |