diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-05-17 04:15:09 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-05-17 04:15:09 +0000 |
commit | 535777c244a0277d692e6651b36ab168c3eed58e (patch) | |
tree | b3d6c3fc529b1b707c7abc8ad57b9dd16b6573bc /packages/grep/grep_2.5.1.bb | |
parent | 8d9362d4ea1de600511064f798f53c47ced916f6 (diff) |
grep 2.5.1: Fix for uclibc. Grep uses __mempcpy which glibc provides but
uclibc doesn't. Since both glibc and uclibc provide the mempcpy version use
that instead.
Diffstat (limited to 'packages/grep/grep_2.5.1.bb')
-rw-r--r-- | packages/grep/grep_2.5.1.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/grep/grep_2.5.1.bb b/packages/grep/grep_2.5.1.bb index 7bcabef167..6d184b8c4c 100644 --- a/packages/grep/grep_2.5.1.bb +++ b/packages/grep/grep_2.5.1.bb @@ -1,9 +1,10 @@ LICENSE = "GPL" SECTION = "console/utils" DESCRIPTION = "grep GNU utility" -PR = "r1" +PR = "r2" -SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2" +SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2 \ + file://uclibc-fix.patch;patch=1" inherit autotools |