From 3ae73ebdc59593048c16d7f27c87cef308e64159 Mon Sep 17 00:00:00 2001 From: David Karlstrom Date: Sun, 24 Jul 2005 22:48:49 +0000 Subject: Add gcc-symlinks, fix the files libpthread.so and libc.so from libc6-dev (that really should be fixed in there) --- packages/meta/openslug-native.bb | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'packages/meta/openslug-native.bb') diff --git a/packages/meta/openslug-native.bb b/packages/meta/openslug-native.bb index 4ac2cfd4b1..da5379da81 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 = "r2" +PR = "r3" INHIBIT_DEFAULT_DEPS = "1" ALLOW_EMPTY = 1 @@ -13,7 +13,7 @@ OPENSLUG_NATIVE = "\ bison \ bzip2 \ coreutils \ - cpp \ + cpp cpp-symlinks \ cvs \ flex \ gawk \ @@ -40,3 +40,14 @@ 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 +} + -- cgit v1.2.3 From 89f67549b36651ad5aed97d4a877bb145f472d1d Mon Sep 17 00:00:00 2001 From: David Karlstrom Date: Mon, 25 Jul 2005 02:02:23 +0000 Subject: Add binutils-symlinks, remove the libc.so and libpthread.so fix since things work without it --- packages/meta/openslug-native.bb | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'packages/meta/openslug-native.bb') 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 -} - -- cgit v1.2.3