diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 9 | ||||
-rw-r--r-- | meta/recipes-extended/bash/bash_3.2.48.bb | 11 | ||||
-rw-r--r-- | meta/recipes-extended/bash/bash_4.2.bb | 2 |
3 files changed, 14 insertions, 8 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index d55e517de1..876be1e42d 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -22,9 +22,12 @@ ALTERNATIVE_PATH = "${base_bindir}/bash" | |||
22 | ALTERNATIVE_LINK = "${base_bindir}/sh" | 22 | ALTERNATIVE_LINK = "${base_bindir}/sh" |
23 | ALTERNATIVE_PRIORITY = "100" | 23 | ALTERNATIVE_PRIORITY = "100" |
24 | 24 | ||
25 | do_configure () { | 25 | export AUTOHEADER = "true" |
26 | gnu-configize | 26 | |
27 | oe_runconf | 27 | do_configure_prepend () { |
28 | if [ ! -e acinclude.m4 ]; then | ||
29 | cat aclocal.m4 > acinclude.m4 | ||
30 | fi | ||
28 | } | 31 | } |
29 | 32 | ||
30 | pkg_postinst_${PN} () { | 33 | pkg_postinst_${PN} () { |
diff --git a/meta/recipes-extended/bash/bash_3.2.48.bb b/meta/recipes-extended/bash/bash_3.2.48.bb index 1520c4e6ba..f2ba5721c6 100644 --- a/meta/recipes-extended/bash/bash_3.2.48.bb +++ b/meta/recipes-extended/bash/bash_3.2.48.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "GPLv2+" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a" |
7 | DEPENDS = "ncurses" | 7 | DEPENDS = "ncurses" |
8 | 8 | ||
9 | PR = "r7" | 9 | PR = "r8" |
10 | 10 | ||
11 | SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \ | 11 | SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \ |
12 | ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \ | 12 | ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \ |
@@ -23,9 +23,12 @@ sbindir = "/sbin" | |||
23 | EXTRA_OECONF = "--with-ncurses" | 23 | EXTRA_OECONF = "--with-ncurses" |
24 | export CC_FOR_BUILD = "${BUILD_CC}" | 24 | export CC_FOR_BUILD = "${BUILD_CC}" |
25 | 25 | ||
26 | do_configure () { | 26 | export AUTOHEADER = "true" |
27 | gnu-configize | 27 | |
28 | oe_runconf | 28 | do_configure_prepend () { |
29 | if [ ! -e acinclude.m4 ]; then | ||
30 | cat aclocal.m4 > acinclude.m4 | ||
31 | fi | ||
29 | } | 32 | } |
30 | 33 | ||
31 | pkg_postinst_${PN} () { | 34 | pkg_postinst_${PN} () { |
diff --git a/meta/recipes-extended/bash/bash_4.2.bb b/meta/recipes-extended/bash/bash_4.2.bb index a0f5e4ef96..80709183cd 100644 --- a/meta/recipes-extended/bash/bash_4.2.bb +++ b/meta/recipes-extended/bash/bash_4.2.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require bash.inc | 1 | require bash.inc |
2 | 2 | ||
3 | PR = "r0" | 3 | PR = "r1" |
4 | 4 | ||
5 | SRC_URI = "${GNU_MIRROR}/bash/${BPN}-${PV}.tar.gz;name=tarball \ | 5 | SRC_URI = "${GNU_MIRROR}/bash/${BPN}-${PV}.tar.gz;name=tarball \ |
6 | ${GNU_MIRROR}/bash/bash-4.2-patches/bash42-001;apply=yes;striplevel=0;name=patch001 \ | 6 | ${GNU_MIRROR}/bash/bash-4.2-patches/bash42-001;apply=yes;striplevel=0;name=patch001 \ |