diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2015-04-08 14:39:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-10 18:10:23 +0100 |
commit | 465508d466aa32be3d6021e07ce00a21e5b22178 (patch) | |
tree | 0149d5f97c566422eaea4e450b3e1d0988d85e8d /meta | |
parent | eac96036ddad001e50c38699c57277aa2cb2fef3 (diff) | |
download | poky-465508d466aa32be3d6021e07ce00a21e5b22178.tar.gz |
sudo: upgrade to 1.8.13
The do_configure_prepend is deleted because it doesn't seem to have any
positive effect and it causes the following error.
| aclocal: error: acinclude.m4:133: file 'm4/ax_sys_weak_alias.m4' does not exist
| autoreconf: aclocal failed with exit status: 1
| ERROR: autoreconf execution failed.
(From OE-Core rev: a31d05f7bb60d5431a6e1cd370d7106ae785b0ca)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/sudo/sudo.inc | 12 | ||||
-rw-r--r-- | meta/recipes-extended/sudo/sudo_1.8.13.bb (renamed from meta/recipes-extended/sudo/sudo_1.8.11p2.bb) | 4 |
2 files changed, 5 insertions, 11 deletions
diff --git a/meta/recipes-extended/sudo/sudo.inc b/meta/recipes-extended/sudo/sudo.inc index 6e9aec824b..2d411f3d89 100644 --- a/meta/recipes-extended/sudo/sudo.inc +++ b/meta/recipes-extended/sudo/sudo.inc | |||
@@ -4,12 +4,12 @@ HOMEPAGE = "http://www.sudo.ws" | |||
4 | BUGTRACKER = "http://www.sudo.ws/bugs/" | 4 | BUGTRACKER = "http://www.sudo.ws/bugs/" |
5 | SECTION = "admin" | 5 | SECTION = "admin" |
6 | LICENSE = "ISC & BSD & Zlib" | 6 | LICENSE = "ISC & BSD & Zlib" |
7 | LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=69e337d679950e304953813158595256 \ | 7 | LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=346ce81ebf0f7f89fd379b40b6a4233b \ |
8 | file://plugins/sudoers/redblack.c;beginline=1;endline=41;md5=e2dbb155fc49beea947515300bab99e0 \ | 8 | file://plugins/sudoers/redblack.c;beginline=1;endline=41;md5=cfe41112f96c19a074934d128f45c693 \ |
9 | file://lib/util/fnmatch.c;beginline=3;endline=27;md5=67f83ee9bd456557397082f8f1be0efd \ | 9 | file://lib/util/fnmatch.c;beginline=3;endline=27;md5=67f83ee9bd456557397082f8f1be0efd \ |
10 | file://lib/util/getcwd.c;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ | 10 | file://lib/util/getcwd.c;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ |
11 | file://lib/util/glob.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ | 11 | file://lib/util/glob.c;beginline=6;endline=31;md5=5872733146b9eb0deb79e1f664815b85 \ |
12 | file://lib/util/snprintf.c;beginline=6;endline=31;md5=c98b24f02967c095d7a70ae2e4d4d4ea \ | 12 | file://lib/util/snprintf.c;beginline=6;endline=34;md5=c82c1b3a5c32e08545c9ec5d71e41e50 \ |
13 | file://include/sudo_queue.h;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ | 13 | file://include/sudo_queue.h;beginline=5;endline=27;md5=449af4cc57fc7d46f42090608ba3e681 \ |
14 | file://lib/util/inet_pton.c;beginline=3;endline=17;md5=3970ab0518ab79cbd0bafb697f10b33a" | 14 | file://lib/util/inet_pton.c;beginline=3;endline=17;md5=3970ab0518ab79cbd0bafb697f10b33a" |
15 | 15 | ||
@@ -22,12 +22,6 @@ CONFFILES_${PN} = "${sysconfdir}/sudoers" | |||
22 | 22 | ||
23 | EXTRA_OECONF = "--with-editor=/bin/vi --with-env-editor" | 23 | EXTRA_OECONF = "--with-editor=/bin/vi --with-env-editor" |
24 | 24 | ||
25 | do_configure_prepend () { | ||
26 | if [ ! -e ${S}/acinclude.m4 ]; then | ||
27 | cat ${S}/aclocal.m4 > ${S}/acinclude.m4 | ||
28 | fi | ||
29 | } | ||
30 | |||
31 | # mksigname/mksiglist are used on build host to generate source files | 25 | # mksigname/mksiglist are used on build host to generate source files |
32 | do_compile_prepend () { | 26 | do_compile_prepend () { |
33 | oe_runmake SSP_CFLAGS="" SSP_LDFLAGS="" CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" CPPFLAGS="$BUILD_CPPFLAGS -I${S}/include -I${S} -I${B}" -C lib/util mksigname mksiglist | 27 | oe_runmake SSP_CFLAGS="" SSP_LDFLAGS="" CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" CPPFLAGS="$BUILD_CPPFLAGS -I${S}/include -I${S} -I${B}" -C lib/util mksigname mksiglist |
diff --git a/meta/recipes-extended/sudo/sudo_1.8.11p2.bb b/meta/recipes-extended/sudo/sudo_1.8.13.bb index c5e2545c18..449417097e 100644 --- a/meta/recipes-extended/sudo/sudo_1.8.11p2.bb +++ b/meta/recipes-extended/sudo/sudo_1.8.13.bb | |||
@@ -6,8 +6,8 @@ SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \ | |||
6 | 6 | ||
7 | PAM_SRC_URI = "file://sudo.pam" | 7 | PAM_SRC_URI = "file://sudo.pam" |
8 | 8 | ||
9 | SRC_URI[md5sum] = "84012b4871b6c775c957cd310d5bad87" | 9 | SRC_URI[md5sum] = "f61577ec330ad1bd504c0e2eec6ea2d8" |
10 | SRC_URI[sha256sum] = "8133849418fa18cf6b6bb6893d1855ff7afe21db8923234a00bf045c90fba1ad" | 10 | SRC_URI[sha256sum] = "e374e5edf2c11c00d6916a9f51cb0ad15e51c7b028370fa15169b07e61e05a25" |
11 | 11 | ||
12 | DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | 12 | DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" |
13 | RDEPENDS_${PN} += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}" | 13 | RDEPENDS_${PN} += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}" |