diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-07-26 16:18:48 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:29 +0100 |
commit | ff5c7e2ad9458f519bc8afe6b4ba34fe6627bd4c (patch) | |
tree | 9461b1a7e7fe528d8596ebec5b975ef750d49cbe /meta/recipes-extended/diffutils/diffutils.inc | |
parent | 6bb519b048d4a120552426046d339ece38949549 (diff) | |
download | poky-ff5c7e2ad9458f519bc8afe6b4ba34fe6627bd4c.tar.gz |
diffutils: refactor to add a common diffutils.inc
(From OE-Core rev: f5f3cf1ac4c2dd3cae0cda3c858c8e5b309e1fdc)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/diffutils/diffutils.inc')
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils.inc b/meta/recipes-extended/diffutils/diffutils.inc new file mode 100644 index 0000000000..3964db0636 --- /dev/null +++ b/meta/recipes-extended/diffutils/diffutils.inc | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Diffutils contains tools used for finding differences between files." | ||
2 | DESCRIPTION = "Diffutils contains the GNU diff, diff3, \ | ||
3 | sdiff, and cmp utilities. These programs are usually \ | ||
4 | used for creating patch files." | ||
5 | SECTION = "base" | ||
6 | |||
7 | INC_PR = "r6" | ||
8 | |||
9 | SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz" | ||
10 | |||
11 | inherit autotools update-alternatives gettext | ||
12 | |||
13 | # diffutils assumes non-glibc compilation with uclibc and | ||
14 | # this causes it to generate its own implementations of | ||
15 | # standard functionality. regex.c actually breaks compilation | ||
16 | # because it uses __mempcpy, there are other things (TBD: | ||
17 | # see diffutils.mk in buildroot) | ||
18 | EXTRA_OECONF_libc-uclibc = "--without-included-regex" | ||
19 | |||
20 | ALTERNATIVE_LINKS = "${bindir}/diff ${bindir}/cmp" | ||
21 | ALTERNATIVE_PRIORITY = "100" | ||
22 | |||