diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2014-01-06 11:27:25 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-06 16:30:00 +0000 |
commit | 8b400596c727a24f585bc54d0609648c1672ca8e (patch) | |
tree | af5bb71d706c0883fba6a80d510114fb8fd74115 /meta/recipes-extended/grep/grep_2.15.bb | |
parent | 6690c12cb1977f6bf93f3eb6d471dbd7db81bf28 (diff) | |
download | openembedded-core-8b400596c727a24f585bc54d0609648c1672ca8e.tar.gz openembedded-core-8b400596c727a24f585bc54d0609648c1672ca8e.tar.bz2 openembedded-core-8b400596c727a24f585bc54d0609648c1672ca8e.zip |
grep: upgrade to 2.16
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/grep/grep_2.15.bb')
-rw-r--r-- | meta/recipes-extended/grep/grep_2.15.bb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-extended/grep/grep_2.15.bb b/meta/recipes-extended/grep/grep_2.15.bb deleted file mode 100644 index b24188ff4b..0000000000 --- a/meta/recipes-extended/grep/grep_2.15.bb +++ /dev/null @@ -1,38 +0,0 @@ -SUMMARY = "GNU grep utility" -HOMEPAGE = "http://savannah.gnu.org/projects/grep/" -BUGTRACKER = "http://savannah.gnu.org/bugs/?group=grep" -SECTION = "console/utils" -LICENSE = "GPLv3" -LIC_FILES_CHKSUM = "file://COPYING;md5=8006d9c814277c1bfc4ca22af94b59ee" - -SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.xz" - -SRC_URI[md5sum] = "8cab8ca52bcae735af40278423c7c942" -SRC_URI[sha256sum] = "bf5a834e587974c8c64e71b35b9e75cd21c7ff253c0e7fbfb0a78be794965314" - -inherit autotools gettext - -EXTRA_OECONF = "--disable-perl-regexp" - -do_configure_prepend () { - rm -f ${S}/m4/init.m4 -} - -do_install () { - autotools_do_install - install -d ${D}${base_bindir} - mv ${D}${bindir}/grep ${D}${base_bindir}/grep - mv ${D}${bindir}/egrep ${D}${base_bindir}/egrep - mv ${D}${bindir}/fgrep ${D}${base_bindir}/fgrep - rmdir ${D}${bindir}/ -} - -inherit update-alternatives - -ALTERNATIVE_PRIORITY = "100" - -ALTERNATIVE_${PN} = "grep egrep fgrep" -ALTERNATIVE_LINK_NAME[grep] = "${base_bindir}/grep" -ALTERNATIVE_LINK_NAME[egrep] = "${base_bindir}/egrep" -ALTERNATIVE_LINK_NAME[fgrep] = "${base_bindir}/fgrep" - |