diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/gettext/gettext_0.16.1.bb | 6 | ||||
-rw-r--r-- | meta/recipes-extended/gawk/gawk_3.1.5.bb | 5 | ||||
-rw-r--r-- | meta/recipes-extended/grep/grep_2.5.1a.bb | 1 | ||||
-rw-r--r-- | meta/recipes-extended/sed/sed_4.1.2.bb | 1 |
4 files changed, 12 insertions, 1 deletions
diff --git a/meta/recipes-core/gettext/gettext_0.16.1.bb b/meta/recipes-core/gettext/gettext_0.16.1.bb index 73e5f55f99..0b7dfa30e1 100644 --- a/meta/recipes-core/gettext/gettext_0.16.1.bb +++ b/meta/recipes-core/gettext/gettext_0.16.1.bb | |||
@@ -31,7 +31,7 @@ PARALLEL_MAKE = "" | |||
31 | 31 | ||
32 | inherit autotools | 32 | inherit autotools |
33 | 33 | ||
34 | EXTRA_OECONF += "--without-lisp --disable-csharp --disable-openmp" | 34 | EXTRA_OECONF += "--without-lisp --disable-csharp --disable-openmp --without-emacs" |
35 | acpaths = '-I ${S}/autoconf-lib-link/m4/ \ | 35 | acpaths = '-I ${S}/autoconf-lib-link/m4/ \ |
36 | -I ${S}/gettext-runtime/m4 \ | 36 | -I ${S}/gettext-runtime/m4 \ |
37 | -I ${S}/gettext-tools/m4' | 37 | -I ${S}/gettext-tools/m4' |
@@ -53,3 +53,7 @@ do_configure_prepend() { | |||
53 | PACKAGES =+ "libgettextlib libgettextsrc" | 53 | PACKAGES =+ "libgettextlib libgettextsrc" |
54 | FILES_libgettextlib = "${libdir}/libgettextlib-*.so*" | 54 | FILES_libgettextlib = "${libdir}/libgettextlib-*.so*" |
55 | FILES_libgettextsrc = "${libdir}/libgettextsrc-*.so*" | 55 | FILES_libgettextsrc = "${libdir}/libgettextsrc-*.so*" |
56 | |||
57 | do_install_append() { | ||
58 | rm -f ${D}${libdir}/preloadable_libintl.so | ||
59 | } | ||
diff --git a/meta/recipes-extended/gawk/gawk_3.1.5.bb b/meta/recipes-extended/gawk/gawk_3.1.5.bb index bd8460d79e..d5d9beaa49 100644 --- a/meta/recipes-extended/gawk/gawk_3.1.5.bb +++ b/meta/recipes-extended/gawk/gawk_3.1.5.bb | |||
@@ -33,3 +33,8 @@ ALTERNATIVE_NAME = "awk" | |||
33 | ALTERNATIVE_PATH = "gawk" | 33 | ALTERNATIVE_PATH = "gawk" |
34 | ALTERNATIVE_LINK = "${bindir}/awk" | 34 | ALTERNATIVE_LINK = "${bindir}/awk" |
35 | ALTERNATIVE_PRIORITY = "100" | 35 | ALTERNATIVE_PRIORITY = "100" |
36 | |||
37 | do_install_append() { | ||
38 | # remove the link since we don't package it | ||
39 | rm ${D}${bindir}/awk | ||
40 | } | ||
diff --git a/meta/recipes-extended/grep/grep_2.5.1a.bb b/meta/recipes-extended/grep/grep_2.5.1a.bb index bb4f53fb02..64064fc5c6 100644 --- a/meta/recipes-extended/grep/grep_2.5.1a.bb +++ b/meta/recipes-extended/grep/grep_2.5.1a.bb | |||
@@ -27,6 +27,7 @@ do_install () { | |||
27 | mv ${D}${bindir}/grep ${D}${base_bindir}/grep.${PN} | 27 | mv ${D}${bindir}/grep ${D}${base_bindir}/grep.${PN} |
28 | mv ${D}${bindir}/egrep ${D}${base_bindir}/egrep.${PN} | 28 | mv ${D}${bindir}/egrep ${D}${base_bindir}/egrep.${PN} |
29 | mv ${D}${bindir}/fgrep ${D}${base_bindir}/fgrep.${PN} | 29 | mv ${D}${bindir}/fgrep ${D}${base_bindir}/fgrep.${PN} |
30 | rmdir ${D}${bindir}/ | ||
30 | } | 31 | } |
31 | 32 | ||
32 | pkg_postinst_${PN} () { | 33 | pkg_postinst_${PN} () { |
diff --git a/meta/recipes-extended/sed/sed_4.1.2.bb b/meta/recipes-extended/sed/sed_4.1.2.bb index 713524c41d..8baa180f72 100644 --- a/meta/recipes-extended/sed/sed_4.1.2.bb +++ b/meta/recipes-extended/sed/sed_4.1.2.bb | |||
@@ -18,6 +18,7 @@ do_install () { | |||
18 | autotools_do_install | 18 | autotools_do_install |
19 | install -d ${D}${base_bindir} | 19 | install -d ${D}${base_bindir} |
20 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} | 20 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} |
21 | rmdir ${D}${bindir}/ | ||
21 | } | 22 | } |
22 | 23 | ||
23 | ALTERNATIVE_NAME = "sed" | 24 | ALTERNATIVE_NAME = "sed" |