diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-03-09 09:43:27 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-03-09 09:49:15 -0500 |
commit | 0ca5d09b5a3688ba55daad5cd210569dacf7e72d (patch) | |
tree | 562c831b36a4d7776b897b30594994995a56c08c /sys-apps/findutils/files | |
parent | net-misc/s3cmd: add user Brendan 'undersys' Horan as co-mantainer in metadata (diff) | |
download | gentoo-0ca5d09b5a3688ba55daad5cd210569dacf7e72d.tar.gz gentoo-0ca5d09b5a3688ba55daad5cd210569dacf7e72d.tar.bz2 gentoo-0ca5d09b5a3688ba55daad5cd210569dacf7e72d.zip |
sys-apps/findutils: add upstream gnulib fix #576818
Diffstat (limited to 'sys-apps/findutils/files')
-rw-r--r-- | sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch b/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch new file mode 100644 index 000000000000..bd695ffa0f6e --- /dev/null +++ b/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch @@ -0,0 +1,36 @@ +https://bugs.gentoo.org/576818 + +From 1f63650823cebf52044df840c81062ccb52163a2 Mon Sep 17 00:00:00 2001 +From: Daiki Ueno <ueno@gnu.org> +Date: Mon, 28 Dec 2015 06:27:42 +0900 +Subject: [PATCH] maint: fix operator precedence in mbrtowc test + +This is a fix for test breakage introduced by commit 45228d96; the +equality expression must be parenthesized when negated with '!', +otherwise we always get: + + test-mbrtowc.c:49: assertion 'ret == (size_t)(-2)' failed + +* m4/mbrtowc.m4 (gl_MBRTOWC_EMPTY_INPUT): Negate the entire expression. +* m4/mbrlen.m4 (gl_MBRLEN_EMPTY_INPUT): Likewise. +--- + m4/mbrlen.m4 | 2 +- + m4/mbrtowc.m4 | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/m4/mbrtowc.m4 b/m4/mbrtowc.m4 +index deb9f06..be2e9d6 100644 +--- a/configure ++++ configure +@@ -569,7 +569,7 @@ changequote([,])dnl + int + main (void) + { +- return ! mbrtowc (&wc, "", 0, &mbs) == (size_t) -2; ++ return ! mbrtowc (&wc, "", 0, &mbs) == (size_t) -2; + } + _ACEOF + if ac_fn_c_try_run "$LINENO"; then : +-- +2.6.2 + |