diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-04-18 10:59:48 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-04-18 21:22:12 +0200 |
commit | baccb506a6feabf114623866568121f49712f5df (patch) | |
tree | 70b94dc1522906646a6604991ecb4db41ed316cc /package/util-linux/0007-build-sys-fix-typo.patch | |
parent | f1dfd80e467d06b338738d35acbdf23d705a1a68 (diff) | |
download | buildroot-baccb506a6feabf114623866568121f49712f5df.tar.gz buildroot-baccb506a6feabf114623866568121f49712f5df.zip |
util-linux: bump to version 2.28
Drop upstream patches (0004-0008).
Convert 0001-sscanf-no-ms-as.patch to git format.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/util-linux/0007-build-sys-fix-typo.patch')
-rw-r--r-- | package/util-linux/0007-build-sys-fix-typo.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/package/util-linux/0007-build-sys-fix-typo.patch b/package/util-linux/0007-build-sys-fix-typo.patch deleted file mode 100644 index 204c3d8f09..0000000000 --- a/package/util-linux/0007-build-sys-fix-typo.patch +++ /dev/null @@ -1,34 +0,0 @@ -From dea1bd2917ed9490ee96162288e0904e3de9da2d Mon Sep 17 00:00:00 2001 -From: Romain Naour <romain.naour@gmail.com> -Date: Tue, 16 Feb 2016 00:24:30 +0100 -Subject: [PATCH] build-sys: fix typo - -When timer_create is available have_timer must be -set to "yes". But instead have_time is used. - -Replace have_time by have_timer. - -Fixes: -http://autobuild.buildroot.net/results/993/9935cd0522d4f978ba2e788a690f66790686b76b - -Signed-off-by: Romain Naour <romain.naour@gmail.com> ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 4559573..3950f0c 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -390,7 +390,7 @@ AC_CHECK_FUNCS([clock_gettime], [], - - have_timer="no" - AC_CHECK_FUNCS([timer_create], -- [have_time="yes"], -+ [have_timer="yes"], - [AC_CHECK_LIB([rt], [timer_create], [ - have_timer="yes" - REALTIME_LIBS="-lrt" --- -2.5.0 - |