summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorMax Eliaser <max.eliaser@intel.com>2014-05-01 13:00:28 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-02 20:46:59 +0100
commit64df4e4aefe6cc460145c8a25c7afadc56fd4a88 (patch)
tree39b9b91c1d8de7a7aa113da186f701414b830e52 /meta/recipes-extended
parent075e2884ce10094258af6f7c6db1af7579b5bffa (diff)
downloadpoky-64df4e4aefe6cc460145c8a25c7afadc56fd4a88.tar.gz
Add texinfo.bbclass; recipes that use texinfo utils at build-time inherit it.
The class itself currently does nothing. The idea is to mark all recipes that make use of the texinfo utilities. In the future, this class could be used to suppress the generation/formatting of documentation for performance, explicitly track dependencies on these utilities, and eliminate Yocto's current dependency on the host system's texinfo utilities. (From OE-Core rev: e6fb2f9afe2ba6b676c46d1eb297ca9cc532d405) Signed-off-by: Max Eliaser <max.eliaser@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/bash/bash.inc2
-rw-r--r--meta/recipes-extended/bc/bc_1.06.bb2
-rw-r--r--meta/recipes-extended/cpio/cpio_v2.inc2
-rw-r--r--meta/recipes-extended/diffutils/diffutils.inc2
-rw-r--r--meta/recipes-extended/ed/ed_0.5.bb2
-rw-r--r--meta/recipes-extended/ed/ed_1.9.bb2
-rw-r--r--meta/recipes-extended/findutils/findutils.inc2
-rw-r--r--meta/recipes-extended/gawk/gawk_3.1.5.bb2
-rw-r--r--meta/recipes-extended/gawk/gawk_4.0.2.bb2
-rw-r--r--meta/recipes-extended/grep/grep_2.18.bb2
-rw-r--r--meta/recipes-extended/grep/grep_2.5.1a.bb2
-rw-r--r--meta/recipes-extended/groff/groff_1.18.1.4.bb2
-rw-r--r--meta/recipes-extended/groff/groff_1.22.2.bb2
-rw-r--r--meta/recipes-extended/gzip/gzip.inc2
-rw-r--r--meta/recipes-extended/libidn/libidn_0.6.14.bb2
-rw-r--r--meta/recipes-extended/libidn/libidn_1.28.bb2
-rw-r--r--meta/recipes-extended/parted/parted_3.1.bb2
-rw-r--r--meta/recipes-extended/screen/screen_4.0.3.bb2
-rw-r--r--meta/recipes-extended/sed/sed_4.1.2.bb2
-rw-r--r--meta/recipes-extended/sed/sed_4.2.2.bb2
-rw-r--r--meta/recipes-extended/tar/tar.inc2
-rw-r--r--meta/recipes-extended/texi2html/texi2html_5.0.bb2
-rw-r--r--meta/recipes-extended/time/time.inc2
-rw-r--r--meta/recipes-extended/wget/wget.inc2
-rw-r--r--meta/recipes-extended/which/which_2.18.bb2
-rw-r--r--meta/recipes-extended/which/which_2.20.bb2
26 files changed, 27 insertions, 25 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc
index 2bb2df9584..2fe0c6b574 100644
--- a/meta/recipes-extended/bash/bash.inc
+++ b/meta/recipes-extended/bash/bash.inc
@@ -4,7 +4,7 @@ SECTION = "base/shell"
4 4
5DEPENDS = "ncurses bison-native" 5DEPENDS = "ncurses bison-native"
6 6
7inherit autotools-brokensep gettext update-alternatives ptest 7inherit autotools-brokensep gettext texinfo update-alternatives ptest
8 8
9PARALLEL_MAKE = "" 9PARALLEL_MAKE = ""
10 10
diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb
index 89d8bee667..b116052c7d 100644
--- a/meta/recipes-extended/bc/bc_1.06.bb
+++ b/meta/recipes-extended/bc/bc_1.06.bb
@@ -18,7 +18,7 @@ SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \
18SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117" 18SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117"
19SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33" 19SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33"
20 20
21inherit autotools-brokensep update-alternatives 21inherit autotools-brokensep texinfo update-alternatives
22 22
23ALTERNATIVE_${PN} = "dc" 23ALTERNATIVE_${PN} = "dc"
24ALTERNATIVE_PRIORITY = "100" 24ALTERNATIVE_PRIORITY = "100"
diff --git a/meta/recipes-extended/cpio/cpio_v2.inc b/meta/recipes-extended/cpio/cpio_v2.inc
index 30446b0ced..93de4bb92b 100644
--- a/meta/recipes-extended/cpio/cpio_v2.inc
+++ b/meta/recipes-extended/cpio/cpio_v2.inc
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
10 file://statdef.patch \ 10 file://statdef.patch \
11 " 11 "
12 12
13inherit autotools gettext 13inherit autotools gettext texinfo
14 14
15S = "${WORKDIR}/cpio-${PV}" 15S = "${WORKDIR}/cpio-${PV}"
16 16
diff --git a/meta/recipes-extended/diffutils/diffutils.inc b/meta/recipes-extended/diffutils/diffutils.inc
index 613b538557..243341aa9c 100644
--- a/meta/recipes-extended/diffutils/diffutils.inc
+++ b/meta/recipes-extended/diffutils/diffutils.inc
@@ -4,7 +4,7 @@ sdiff, and cmp utilities. These programs are usually \
4used for creating patch files." 4used for creating patch files."
5SECTION = "base" 5SECTION = "base"
6 6
7inherit autotools update-alternatives gettext 7inherit autotools texinfo update-alternatives gettext
8 8
9# diffutils assumes non-glibc compilation with uclibc and 9# diffutils assumes non-glibc compilation with uclibc and
10# this causes it to generate its own implementations of 10# this causes it to generate its own implementations of
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
index a696c0c8fb..a075780e93 100644
--- a/meta/recipes-extended/ed/ed_0.5.bb
+++ b/meta/recipes-extended/ed/ed_0.5.bb
@@ -11,7 +11,7 @@ SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.
11SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632" 11SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
12SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e" 12SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
13 13
14inherit autotools 14inherit autotools texinfo
15 15
16EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'" 16EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'"
17 17
diff --git a/meta/recipes-extended/ed/ed_1.9.bb b/meta/recipes-extended/ed/ed_1.9.bb
index d1621548dc..8e94eedea6 100644
--- a/meta/recipes-extended/ed/ed_1.9.bb
+++ b/meta/recipes-extended/ed/ed_1.9.bb
@@ -16,6 +16,8 @@ SRC_URI = "${GNU_MIRROR}/ed/ed-${PV}.tar.gz"
16SRC_URI[md5sum] = "565b6d1d5a9a8816b9b304fc4ed9405d" 16SRC_URI[md5sum] = "565b6d1d5a9a8816b9b304fc4ed9405d"
17SRC_URI[sha256sum] = "d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88" 17SRC_URI[sha256sum] = "d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88"
18 18
19inherit texinfo
20
19do_configure() { 21do_configure() {
20 ${S}/configure 22 ${S}/configure
21} 23}
diff --git a/meta/recipes-extended/findutils/findutils.inc b/meta/recipes-extended/findutils/findutils.inc
index 4edb127ba5..4f4068a091 100644
--- a/meta/recipes-extended/findutils/findutils.inc
+++ b/meta/recipes-extended/findutils/findutils.inc
@@ -9,7 +9,7 @@ SECTION = "console/utils"
9 9
10SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz" 10SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz"
11 11
12inherit autotools gettext update-alternatives 12inherit autotools gettext texinfo update-alternatives
13 13
14ALTERNATIVE_${PN} = "find xargs" 14ALTERNATIVE_${PN} = "find xargs"
15ALTERNATIVE_PRIORITY = "100" 15ALTERNATIVE_PRIORITY = "100"
diff --git a/meta/recipes-extended/gawk/gawk_3.1.5.bb b/meta/recipes-extended/gawk/gawk_3.1.5.bb
index 4d9d6e4c43..48e8939a89 100644
--- a/meta/recipes-extended/gawk/gawk_3.1.5.bb
+++ b/meta/recipes-extended/gawk/gawk_3.1.5.bb
@@ -21,7 +21,7 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
21SRC_URI[md5sum] = "4760325489479cac17fe0114b8f62f30" 21SRC_URI[md5sum] = "4760325489479cac17fe0114b8f62f30"
22SRC_URI[sha256sum] = "463dcb9d0ca398b1d4f5a332f6cd9cec56441265fca616f2ea1b44d459e9f0f8" 22SRC_URI[sha256sum] = "463dcb9d0ca398b1d4f5a332f6cd9cec56441265fca616f2ea1b44d459e9f0f8"
23 23
24inherit autotools gettext update-alternatives 24inherit autotools gettext texinfo update-alternatives
25 25
26PACKAGES += "gawk-common pgawk" 26PACKAGES += "gawk-common pgawk"
27 27
diff --git a/meta/recipes-extended/gawk/gawk_4.0.2.bb b/meta/recipes-extended/gawk/gawk_4.0.2.bb
index eb86af39da..cb2f9c0468 100644
--- a/meta/recipes-extended/gawk/gawk_4.0.2.bb
+++ b/meta/recipes-extended/gawk/gawk_4.0.2.bb
@@ -23,7 +23,7 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
23SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a" 23SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a"
24SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a" 24SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a"
25 25
26inherit autotools gettext update-alternatives 26inherit autotools gettext texinfo update-alternatives
27 27
28PACKAGES += "gawk-common pgawk dgawk" 28PACKAGES += "gawk-common pgawk dgawk"
29 29
diff --git a/meta/recipes-extended/grep/grep_2.18.bb b/meta/recipes-extended/grep/grep_2.18.bb
index 5ffeaf0d99..99337f7679 100644
--- a/meta/recipes-extended/grep/grep_2.18.bb
+++ b/meta/recipes-extended/grep/grep_2.18.bb
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.xz"
10SRC_URI[md5sum] = "7439f8266f50844b56cc3e2721606541" 10SRC_URI[md5sum] = "7439f8266f50844b56cc3e2721606541"
11SRC_URI[sha256sum] = "e6436e5077fa1497feccc8feaabd3f507b172369bf120fbc9e4874bba81be720" 11SRC_URI[sha256sum] = "e6436e5077fa1497feccc8feaabd3f507b172369bf120fbc9e4874bba81be720"
12 12
13inherit autotools gettext 13inherit autotools gettext texinfo
14 14
15EXTRA_OECONF = "--disable-perl-regexp" 15EXTRA_OECONF = "--disable-perl-regexp"
16 16
diff --git a/meta/recipes-extended/grep/grep_2.5.1a.bb b/meta/recipes-extended/grep/grep_2.5.1a.bb
index 088959c9ca..79842baac8 100644
--- a/meta/recipes-extended/grep/grep_2.5.1a.bb
+++ b/meta/recipes-extended/grep/grep_2.5.1a.bb
@@ -20,7 +20,7 @@ SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2 \
20SRC_URI[md5sum] = "52202fe462770fa6be1bb667bd6cf30c" 20SRC_URI[md5sum] = "52202fe462770fa6be1bb667bd6cf30c"
21SRC_URI[sha256sum] = "38c8a2bb9223d1fb1b10bdd607cf44830afc92fd451ac4cd07619bf92bdd3132" 21SRC_URI[sha256sum] = "38c8a2bb9223d1fb1b10bdd607cf44830afc92fd451ac4cd07619bf92bdd3132"
22 22
23inherit autotools gettext 23inherit autotools gettext texinfo
24 24
25EXTRA_OECONF = "--disable-perl-regexp --disable-ncurses" 25EXTRA_OECONF = "--disable-perl-regexp --disable-ncurses"
26 26
diff --git a/meta/recipes-extended/groff/groff_1.18.1.4.bb b/meta/recipes-extended/groff/groff_1.18.1.4.bb
index 28105f8b43..85357c56bf 100644
--- a/meta/recipes-extended/groff/groff_1.18.1.4.bb
+++ b/meta/recipes-extended/groff/groff_1.18.1.4.bb
@@ -13,7 +13,7 @@ SRC_URI = "${GNU_MIRROR}/groff/groff-${PV}.tar.gz \
13 file://man-local.patch \ 13 file://man-local.patch \
14 file://mdoc-local.patch" 14 file://mdoc-local.patch"
15 15
16inherit autotools 16inherit autotools texinfo
17 17
18EXTRA_OECONF="--without-x --prefix=${D} --exec-prefix=${D} --bindir=${D}${bindir} --datadir=${D}${datadir} --mandir=${D}${datadir}/man --infodir=${D}${datadir}info --with-appresdir=${D}${datadir}" 18EXTRA_OECONF="--without-x --prefix=${D} --exec-prefix=${D} --bindir=${D}${bindir} --datadir=${D}${datadir} --mandir=${D}${datadir}/man --infodir=${D}${datadir}info --with-appresdir=${D}${datadir}"
19 19
diff --git a/meta/recipes-extended/groff/groff_1.22.2.bb b/meta/recipes-extended/groff/groff_1.22.2.bb
index 9d2a3c75bd..227f9fa621 100644
--- a/meta/recipes-extended/groff/groff_1.22.2.bb
+++ b/meta/recipes-extended/groff/groff_1.22.2.bb
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "380864dac4772e0c0d7b1282d25d0c5fd7f63baf45c87c4657afed22a1
18DEPENDS = "groff-native" 18DEPENDS = "groff-native"
19DEPENDS_class-native = "" 19DEPENDS_class-native = ""
20 20
21inherit autotools 21inherit autotools texinfo
22 22
23EXTRA_OECONF = "--without-x" 23EXTRA_OECONF = "--without-x"
24PARALLEL_MAKE = "" 24PARALLEL_MAKE = ""
diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc
index 6ec1dae0fd..920b256d43 100644
--- a/meta/recipes-extended/gzip/gzip.inc
+++ b/meta/recipes-extended/gzip/gzip.inc
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
10 10
11SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" 11SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz"
12 12
13inherit autotools 13inherit autotools texinfo
14 14
15do_install_append () { 15do_install_append () {
16 # Rename and move files into /bin (FHS), which is typical place for gzip 16 # Rename and move files into /bin (FHS), which is typical place for gzip
diff --git a/meta/recipes-extended/libidn/libidn_0.6.14.bb b/meta/recipes-extended/libidn/libidn_0.6.14.bb
index a13ed27135..ff8d345ccb 100644
--- a/meta/recipes-extended/libidn/libidn_0.6.14.bb
+++ b/meta/recipes-extended/libidn/libidn_0.6.14.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
9 file://src/idn.c;beginline=6;endline=18;md5=56c89e359652a71cda128d75f0ffdac4" 9 file://src/idn.c;beginline=6;endline=18;md5=56c89e359652a71cda128d75f0ffdac4"
10PR = "r1" 10PR = "r1"
11 11
12inherit pkgconfig autotools gettext 12inherit pkgconfig autotools gettext texinfo
13 13
14SRC_URI = "http://alpha.gnu.org/gnu/libidn/${BPN}-${PV}.tar.gz" 14SRC_URI = "http://alpha.gnu.org/gnu/libidn/${BPN}-${PV}.tar.gz"
15 15
diff --git a/meta/recipes-extended/libidn/libidn_1.28.bb b/meta/recipes-extended/libidn/libidn_1.28.bb
index effd5ea0bd..bd079c1fe2 100644
--- a/meta/recipes-extended/libidn/libidn_1.28.bb
+++ b/meta/recipes-extended/libidn/libidn_1.28.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3231f57e8fce0f62f81b03107e788888 \
11 file://lib/idna.h;endline=21;md5=f73089b7f52dd2cb3540e274bd76106d \ 11 file://lib/idna.h;endline=21;md5=f73089b7f52dd2cb3540e274bd76106d \
12 file://src/idn.c;endline=20;md5=d7797e6cc3a7b48e6050fc0d27104595" 12 file://src/idn.c;endline=20;md5=d7797e6cc3a7b48e6050fc0d27104595"
13 13
14inherit pkgconfig autotools gettext 14inherit pkgconfig autotools gettext texinfo
15 15
16SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \ 16SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \
17 file://libidn_fix_for_automake-1.12.patch \ 17 file://libidn_fix_for_automake-1.12.patch \
diff --git a/meta/recipes-extended/parted/parted_3.1.bb b/meta/recipes-extended/parted/parted_3.1.bb
index 8344ea82ce..9057463c7e 100644
--- a/meta/recipes-extended/parted/parted_3.1.bb
+++ b/meta/recipes-extended/parted/parted_3.1.bb
@@ -22,7 +22,7 @@ SRC_URI[sha256sum] = "5e9cc1f91eaf016e5033d85b9b893fd6d3ffaca532a48de1082df9b942
22 22
23EXTRA_OECONF = "--disable-device-mapper" 23EXTRA_OECONF = "--disable-device-mapper"
24 24
25inherit autotools pkgconfig gettext ptest 25inherit autotools pkgconfig gettext texinfo ptest
26 26
27BBCLASSEXTEND = "native" 27BBCLASSEXTEND = "native"
28 28
diff --git a/meta/recipes-extended/screen/screen_4.0.3.bb b/meta/recipes-extended/screen/screen_4.0.3.bb
index 6fd02a07cb..5850560fe4 100644
--- a/meta/recipes-extended/screen/screen_4.0.3.bb
+++ b/meta/recipes-extended/screen/screen_4.0.3.bb
@@ -30,7 +30,7 @@ SRC_URI[tarball.sha256sum] = "78f0d5b1496084a5902586304d4a73954b2bfe33ea13edceec
30SRC_URI[patch.md5sum] = "5960bdae6782ee9356b7e0e0a1fa7c19" 30SRC_URI[patch.md5sum] = "5960bdae6782ee9356b7e0e0a1fa7c19"
31SRC_URI[patch.sha256sum] = "10acb274b2fb0bb7137a0d66e52fa0f18125bc5198c7a8d5af381b4b30636316" 31SRC_URI[patch.sha256sum] = "10acb274b2fb0bb7137a0d66e52fa0f18125bc5198c7a8d5af381b4b30636316"
32 32
33inherit autotools 33inherit autotools texinfo
34 34
35EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 \ 35EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 \
36 ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}" 36 ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}"
diff --git a/meta/recipes-extended/sed/sed_4.1.2.bb b/meta/recipes-extended/sed/sed_4.1.2.bb
index 5607b0ac62..fe242e16bd 100644
--- a/meta/recipes-extended/sed/sed_4.1.2.bb
+++ b/meta/recipes-extended/sed/sed_4.1.2.bb
@@ -14,7 +14,7 @@ SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \
14SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0" 14SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0"
15SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab" 15SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab"
16 16
17inherit autotools update-alternatives gettext 17inherit autotools texinfo update-alternatives gettext
18 18
19do_configure_prepend () { 19do_configure_prepend () {
20 cp ${WORKDIR}/Makevars ${S}/po/ 20 cp ${WORKDIR}/Makevars ${S}/po/
diff --git a/meta/recipes-extended/sed/sed_4.2.2.bb b/meta/recipes-extended/sed/sed_4.2.2.bb
index cf8347c2d5..47c8b5b14f 100644
--- a/meta/recipes-extended/sed/sed_4.2.2.bb
+++ b/meta/recipes-extended/sed/sed_4.2.2.bb
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz"
10SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056" 10SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056"
11SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff" 11SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff"
12 12
13inherit autotools update-alternatives gettext 13inherit autotools texinfo update-alternatives gettext
14 14
15EXTRA_OECONF = "--disable-acl" 15EXTRA_OECONF = "--disable-acl"
16 16
diff --git a/meta/recipes-extended/tar/tar.inc b/meta/recipes-extended/tar/tar.inc
index 30a1373fef..51d49340a1 100644
--- a/meta/recipes-extended/tar/tar.inc
+++ b/meta/recipes-extended/tar/tar.inc
@@ -6,7 +6,7 @@ SECTION = "base"
6 6
7SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2" 7SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2"
8 8
9inherit autotools gettext 9inherit autotools gettext texinfo
10 10
11EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" 11EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}"
12 12
diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb
index a22b981a5d..d488465751 100644
--- a/meta/recipes-extended/texi2html/texi2html_5.0.bb
+++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
@@ -12,7 +12,7 @@ SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}.
12SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54" 12SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
13SRC_URI[sha256sum] = "e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa" 13SRC_URI[sha256sum] = "e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa"
14 14
15inherit autotools gettext 15inherit autotools gettext texinfo
16 16
17do_configure_prepend() { 17do_configure_prepend() {
18 # Make a directory for the old gettext setup 18 # Make a directory for the old gettext setup
diff --git a/meta/recipes-extended/time/time.inc b/meta/recipes-extended/time/time.inc
index 028da7cd02..85862177b7 100644
--- a/meta/recipes-extended/time/time.inc
+++ b/meta/recipes-extended/time/time.inc
@@ -6,7 +6,7 @@ SECTION = "utils"
6LICENSE = "GPLv2+" 6LICENSE = "GPLv2+"
7LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" 7LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
8 8
9inherit update-alternatives 9inherit texinfo update-alternatives
10 10
11ALTERNATIVE_${PN} = "time" 11ALTERNATIVE_${PN} = "time"
12ALTERNATIVE_PRIORITY = "100" 12ALTERNATIVE_PRIORITY = "100"
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
index 4eeef708c4..a778bca614 100644
--- a/meta/recipes-extended/wget/wget.inc
+++ b/meta/recipes-extended/wget/wget.inc
@@ -7,7 +7,7 @@ DEPENDS = "openssl zlib libpcre"
7 7
8INC_PR = "r16" 8INC_PR = "r16"
9 9
10inherit autotools gettext update-alternatives 10inherit autotools gettext texinfo update-alternatives
11 11
12EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ 12EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \
13 --with-ssl=openssl --disable-rpath --disable-iri \ 13 --with-ssl=openssl --disable-rpath --disable-iri \
diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb
index 4f780100b3..5fa5d9e8eb 100644
--- a/meta/recipes-extended/which/which_2.18.bb
+++ b/meta/recipes-extended/which/which_2.18.bb
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "9445cd7e02ec0c26a44fd56098464ded064ba5d93dd2e15ec12410ba56
19 19
20DEPENDS = "cwautomacros-native" 20DEPENDS = "cwautomacros-native"
21 21
22inherit autotools update-alternatives 22inherit autotools texinfo update-alternatives
23 23
24do_configure_prepend() { 24do_configure_prepend() {
25 OLD="@ACLOCAL_CWFLAGS@" 25 OLD="@ACLOCAL_CWFLAGS@"
diff --git a/meta/recipes-extended/which/which_2.20.bb b/meta/recipes-extended/which/which_2.20.bb
index f4e87de76b..f3c6037786 100644
--- a/meta/recipes-extended/which/which_2.20.bb
+++ b/meta/recipes-extended/which/which_2.20.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\
11 file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2" 11 file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2"
12DEPENDS = "cwautomacros-native" 12DEPENDS = "cwautomacros-native"
13 13
14inherit autotools update-alternatives 14inherit autotools texinfo update-alternatives
15 15
16PR = "r3" 16PR = "r3"
17 17