All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/util-linux: fix typo in configure.ac
@ 2016-02-15 23:33 Romain Naour
  2016-02-16 21:32 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Romain Naour @ 2016-02-15 23:33 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/993/9935cd0522d4f978ba2e788a690f66790686b76b

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Lada Trimasova <ltrimas@synopsys.com>
---
 package/util-linux/0007-build-sys-fix-typo.patch | 34 ++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 package/util-linux/0007-build-sys-fix-typo.patch

diff --git a/package/util-linux/0007-build-sys-fix-typo.patch b/package/util-linux/0007-build-sys-fix-typo.patch
new file mode 100644
index 0000000..d6aad4c
--- /dev/null
+++ b/package/util-linux/0007-build-sys-fix-typo.patch
@@ -0,0 +1,34 @@
+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
+
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/util-linux: fix typo in configure.ac
  2016-02-15 23:33 [Buildroot] [PATCH] package/util-linux: fix typo in configure.ac Romain Naour
@ 2016-02-16 21:32 ` Thomas Petazzoni
  2016-02-19 22:14   ` Romain Naour
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-02-16 21:32 UTC (permalink / raw)
  To: buildroot

Dear Romain Naour,

On Tue, 16 Feb 2016 00:33:27 +0100, Romain Naour wrote:
> Fixes:
> http://autobuild.buildroot.net/results/993/9935cd0522d4f978ba2e788a690f66790686b76b
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: Lada Trimasova <ltrimas@synopsys.com>
> ---
>  package/util-linux/0007-build-sys-fix-typo.patch | 34 ++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>  create mode 100644 package/util-linux/0007-build-sys-fix-typo.patch

Applied to master, thanks. Please don't forget to submit the patch
upstream (and also other util-linux patches we have and that maybe have
not been submitted upstream yet). Thanks :-)

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/util-linux: fix typo in configure.ac
  2016-02-16 21:32 ` Thomas Petazzoni
@ 2016-02-19 22:14   ` Romain Naour
  0 siblings, 0 replies; 3+ messages in thread
From: Romain Naour @ 2016-02-19 22:14 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

Le 16/02/2016 22:32, Thomas Petazzoni a ?crit :

> Dear Romain Naour,
>
> On Tue, 16 Feb 2016 00:33:27 +0100, Romain Naour wrote:
>> Fixes:
>> http://autobuild.buildroot.net/results/993/9935cd0522d4f978ba2e788a690f66790686b76b
>>
>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>> Cc: Lada Trimasova <ltrimas@synopsys.com>
>> ---
>>   package/util-linux/0007-build-sys-fix-typo.patch | 34 ++++++++++++++++++++++++
>>   1 file changed, 34 insertions(+)
>>   create mode 100644 package/util-linux/0007-build-sys-fix-typo.patch
> Applied to master, thanks. Please don't forget to submit the patch
> upstream (and also other util-linux patches we have and that maybe have
> not been submitted upstream yet). Thanks :-)

Well, sorry I forgot to send upstream :-/ I just sent two of these 
patches upsteam:
http://article.gmane.org/gmane.linux.utilities.util-linux-ng/12075
http://article.gmane.org/gmane.linux.utilities.util-linux-ng/12076

Patches 5 and 6 are upstream.

I'll send a patch to Buildroot to drop patch 3 since we don't support
old uClibc anymore.

Patch 1 seems still needed and not upstream yet.I need to take a closer look... Best regards, Romain

>
> Thomas
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-19 22:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-15 23:33 [Buildroot] [PATCH] package/util-linux: fix typo in configure.ac Romain Naour
2016-02-16 21:32 ` Thomas Petazzoni
2016-02-19 22:14   ` Romain Naour

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.