Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 | inherit autotools texinfo update-alternatives gettext |
| 8 | |
| 9 | # diffutils assumes non-glibc compilation with uclibc and |
| 10 | # this causes it to generate its own implementations of |
| 11 | # standard functionality. regex.c actually breaks compilation |
| 12 | # because it uses __mempcpy, there are other things (TBD: |
| 13 | # see diffutils.mk in buildroot) |
| 14 | EXTRA_OECONF_libc-uclibc = "--without-included-regex" |
| 15 | |
| 16 | ALTERNATIVE_${PN} = "diff cmp" |
| 17 | ALTERNATIVE_PRIORITY = "100" |
| 18 | |