diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-08 22:28:07 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-08 22:28:07 +0000 |
commit | d9fdf9eda6f1b09d163214188a185855710c082f (patch) | |
tree | ba5710c87db9a5e19b2a3cf996d9022b9ae9d1ec /content/glibc-2.3.1.oe | |
parent | 17429b9bb15fbf9cffb9f6e0d0bd100066d0ae89 (diff) |
BUGFIXES: a bunch of build fixes to packages, and changed the patchset we're applying to glibc to match what debian is.
BKrev: 3f5d0277Uvpx3c3AkpBmSIEUKkTDYQ
Diffstat (limited to 'content/glibc-2.3.1.oe')
-rw-r--r-- | content/glibc-2.3.1.oe | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/content/glibc-2.3.1.oe b/content/glibc-2.3.1.oe index b82ef0dcf1..ac9e158879 100644 --- a/content/glibc-2.3.1.oe +++ b/content/glibc-2.3.1.oe @@ -1,7 +1,7 @@ DESCRIPTION="GNU C Library" LICENSE="LGPL" SECTION="libs" -DEPENDS="content/kernel-headers" +DEPENDS="virtual/kernel-header" RDEPENDS="" PRIORITY=required MAINTAINER="Chris Larson <kergoth@handhelds.org>" @@ -16,11 +16,13 @@ EXTRA_OEMAKE= PACKAGES="libc6" do_unpack() { - base_do_unpack $@ || die - test -d ${S} || die + set -e + base_do_unpack $@ + test -d ${S} mv ${WORKDIR}/linuxthreads{,_db} ${S}/ } do_install() { + set -e ${MAKE} install_root=${D} install } |