Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] stress: disable documentation
@ 2013-10-23 23:43 Arnout Vandecappelle
  2013-10-24  6:42 ` Peter Korsgaard
  2013-10-24  7:10 ` Thomas De Schampheleire
  0 siblings, 2 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2013-10-23 23:43 UTC (permalink / raw)
  To: buildroot

It fails to build with my makeinfo version. Note that the autobuilders don't
see this, probably because they don't have makeinfo installed.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/stress/stress.mk | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/package/stress/stress.mk b/package/stress/stress.mk
index 63efb66..b058031 100644
--- a/package/stress/stress.mk
+++ b/package/stress/stress.mk
@@ -17,7 +17,10 @@ STRESS_AUTORECONF = YES
 #
 # If the BR2_PREFER_STATIC_LIB is not defined, we have to specify
 # --disable-static explicitly to get stress linked dynamically.
+#
+# Also, disable documentation by undefining makeinfo
 STRESS_CONF_OPT = \
-	$(if $(BR2_PREFER_STATIC_LIB),,--disable-static)
+	$(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \
+	MAKEINFO=:
 
 $(eval $(autotools-package))
-- 
1.8.4.rc3

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

* [Buildroot] [PATCH] stress: disable documentation
  2013-10-23 23:43 [Buildroot] [PATCH] stress: disable documentation Arnout Vandecappelle
@ 2013-10-24  6:42 ` Peter Korsgaard
  2013-10-24  7:10 ` Thomas De Schampheleire
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-10-24  6:42 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 > It fails to build with my makeinfo version. Note that the autobuilders don't
 > see this, probably because they don't have makeinfo installed.

 > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] stress: disable documentation
  2013-10-23 23:43 [Buildroot] [PATCH] stress: disable documentation Arnout Vandecappelle
  2013-10-24  6:42 ` Peter Korsgaard
@ 2013-10-24  7:10 ` Thomas De Schampheleire
  2013-10-24 11:43   ` Arnout Vandecappelle
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas De Schampheleire @ 2013-10-24  7:10 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 24, 2013 at 1:43 AM, Arnout Vandecappelle (Essensium/Mind)
<arnout@mind.be> wrote:
> It fails to build with my makeinfo version. Note that the autobuilders don't
> see this, probably because they don't have makeinfo installed.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
>  package/stress/stress.mk | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/package/stress/stress.mk b/package/stress/stress.mk
> index 63efb66..b058031 100644
> --- a/package/stress/stress.mk
> +++ b/package/stress/stress.mk
> @@ -17,7 +17,10 @@ STRESS_AUTORECONF = YES
>  #
>  # If the BR2_PREFER_STATIC_LIB is not defined, we have to specify
>  # --disable-static explicitly to get stress linked dynamically.
> +#
> +# Also, disable documentation by undefining makeinfo
>  STRESS_CONF_OPT = \
> -       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static)
> +       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \
> +       MAKEINFO=:

What is the significance of this colon?

Thanks,
Thomas

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

* [Buildroot] [PATCH] stress: disable documentation
  2013-10-24  7:10 ` Thomas De Schampheleire
@ 2013-10-24 11:43   ` Arnout Vandecappelle
  2013-10-24 13:13     ` Thomas De Schampheleire
  0 siblings, 1 reply; 5+ messages in thread
From: Arnout Vandecappelle @ 2013-10-24 11:43 UTC (permalink / raw)
  To: buildroot

On 24/10/13 09:10, Thomas De Schampheleire wrote:
> On Thu, Oct 24, 2013 at 1:43 AM, Arnout Vandecappelle (Essensium/Mind)
> <arnout@mind.be> wrote:
>> It fails to build with my makeinfo version. Note that the autobuilders don't
>> see this, probably because they don't have makeinfo installed.
>>
>> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>> ---
>>   package/stress/stress.mk | 5 ++++-
>>   1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/package/stress/stress.mk b/package/stress/stress.mk
>> index 63efb66..b058031 100644
>> --- a/package/stress/stress.mk
>> +++ b/package/stress/stress.mk
>> @@ -17,7 +17,10 @@ STRESS_AUTORECONF = YES
>>   #
>>   # If the BR2_PREFER_STATIC_LIB is not defined, we have to specify
>>   # --disable-static explicitly to get stress linked dynamically.
>> +#
>> +# Also, disable documentation by undefining makeinfo
>>   STRESS_CONF_OPT = \
>> -       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static)
>> +       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \
>> +       MAKEINFO=:
>
> What is the significance of this colon?

  It's just an empty command. I could have used 'true' as well. In 
practice, they're the same. However, POSIX defines 'true' to take no 
arguments, while ':' ignores its arguments, so ':' is more pedantically 
correct.


  Regards,
  Arnout
-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] stress: disable documentation
  2013-10-24 11:43   ` Arnout Vandecappelle
@ 2013-10-24 13:13     ` Thomas De Schampheleire
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas De Schampheleire @ 2013-10-24 13:13 UTC (permalink / raw)
  To: buildroot

On Thu, Oct 24, 2013 at 1:43 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 24/10/13 09:10, Thomas De Schampheleire wrote:
>>> +# Also, disable documentation by undefining makeinfo
>>>   STRESS_CONF_OPT = \
>>> -       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static)
>>> +       $(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \
>>> +       MAKEINFO=:
>>
>>
>> What is the significance of this colon?
>
>
>  It's just an empty command. I could have used 'true' as well. In practice,
> they're the same. However, POSIX defines 'true' to take no arguments, while
> ':' ignores its arguments, so ':' is more pedantically correct.

This is new to me, thanks!

Best regards,
Thomas

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

end of thread, other threads:[~2013-10-24 13:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-23 23:43 [Buildroot] [PATCH] stress: disable documentation Arnout Vandecappelle
2013-10-24  6:42 ` Peter Korsgaard
2013-10-24  7:10 ` Thomas De Schampheleire
2013-10-24 11:43   ` Arnout Vandecappelle
2013-10-24 13:13     ` Thomas De Schampheleire

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox