diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-07-26 16:29:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:30 +0100 |
commit | 825929cc3cd44008fa5ab110e80d13a5c965c12c (patch) | |
tree | ea800b2c5e5610107af23b9d081f75ca4ca6f594 /meta/recipes-extended/findutils/findutils_4.2.31.bb | |
parent | a4e13edf8950749caac526d4fdb72897e8b55619 (diff) | |
download | poky-825929cc3cd44008fa5ab110e80d13a5c965c12c.tar.gz |
findutils: refactor common code to findutils.inc
(From OE-Core rev: 071a959d430402a78ca5b392c8387489da042c08)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/findutils/findutils_4.2.31.bb')
-rw-r--r-- | meta/recipes-extended/findutils/findutils_4.2.31.bb | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/meta/recipes-extended/findutils/findutils_4.2.31.bb b/meta/recipes-extended/findutils/findutils_4.2.31.bb index 37da0ce340..38cdc219b9 100644 --- a/meta/recipes-extended/findutils/findutils_4.2.31.bb +++ b/meta/recipes-extended/findutils/findutils_4.2.31.bb | |||
@@ -1,33 +1,12 @@ | |||
1 | SUMMARY = "find, locate, and xargs binaries." | ||
2 | DESCRIPTION = "The GNU Find Utilities are the basic directory searching utilities of the GNU operating system. \ | ||
3 | These programs are typically used in conjunction with other programs to provide modular and powerful directory \ | ||
4 | search and file locating capabilities to other commands." | ||
5 | HOMEPAGE = "http://www.gnu.org/software/findutils/" | ||
6 | BUGTRACKER = "http://savannah.gnu.org/bugs/?group=findutils" | ||
7 | SECTION = "console/utils" | ||
8 | |||
9 | LICENSE = "GPLv2+" | 1 | LICENSE = "GPLv2+" |
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 2 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
11 | PR = "r3" | 3 | PR = "r3" |
12 | 4 | ||
13 | SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz \ | 5 | require findutils.inc |
14 | file://gnulib-extension.patch \ | 6 | |
15 | file://findutils_fix_for_automake-1.12.patch \ | 7 | SRC_URI += "file://gnulib-extension.patch \ |
8 | file://findutils_fix_for_automake-1.12.patch \ | ||
16 | " | 9 | " |
17 | 10 | ||
18 | SRC_URI[md5sum] = "a0e31a0f18a49709bf5a449867c8049a" | 11 | SRC_URI[md5sum] = "a0e31a0f18a49709bf5a449867c8049a" |
19 | SRC_URI[sha256sum] = "e0d34b8faca0b3cca0703f6c6b498afbe72f0ba16c35980c10ec9ef7724d6204" | 12 | SRC_URI[sha256sum] = "e0d34b8faca0b3cca0703f6c6b498afbe72f0ba16c35980c10ec9ef7724d6204" |
20 | |||
21 | inherit autotools gettext update-alternatives | ||
22 | |||
23 | ALTERNATIVE_LINKS = "${bindir}/find ${bindir}/xargs" | ||
24 | ALTERNATIVE_PRIORITY = "100" | ||
25 | |||
26 | # diffutils assumes non-glibc compilation with uclibc and | ||
27 | # this causes it to generate its own implementations of | ||
28 | # standard functionality. regex.c actually breaks compilation | ||
29 | # because it uses __mempcpy, there are other things (TBD: | ||
30 | # see diffutils.mk in buildroot) | ||
31 | EXTRA_OECONF_libc-uclibc = "--without-included-regex" | ||
32 | |||
33 | BBCLASSEXTEND = "native" | ||