summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/diffutils/diffutils.inc
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-07-26 16:18:48 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-15 14:26:29 +0100
commitff5c7e2ad9458f519bc8afe6b4ba34fe6627bd4c (patch)
tree9461b1a7e7fe528d8596ebec5b975ef750d49cbe /meta/recipes-extended/diffutils/diffutils.inc
parent6bb519b048d4a120552426046d339ece38949549 (diff)
downloadpoky-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.inc22
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 @@
1SUMMARY = "Diffutils contains tools used for finding differences between files."
2DESCRIPTION = "Diffutils contains the GNU diff, diff3, \
3sdiff, and cmp utilities. These programs are usually \
4used for creating patch files."
5SECTION = "base"
6
7INC_PR = "r6"
8
9SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.gz"
10
11inherit 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)
18EXTRA_OECONF_libc-uclibc = "--without-included-regex"
19
20ALTERNATIVE_LINKS = "${bindir}/diff ${bindir}/cmp"
21ALTERNATIVE_PRIORITY = "100"
22