All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtla: make doc build optional
@ 2022-01-26  0:13 Shuah Khan
  2022-01-26 10:32 ` Daniel Bristot de Oliveira
  0 siblings, 1 reply; 4+ messages in thread
From: Shuah Khan @ 2022-01-26  0:13 UTC (permalink / raw)
  To: bristot, rostedt; +Cc: Shuah Khan, linux-kernel

rtla build fails due to doc build dependency on rst2man. Make
doc build optional so rtla could be built without docs. Leave
the install dependency on doc_install alone.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
---
 tools/tracing/rtla/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/tracing/rtla/Makefile b/tools/tracing/rtla/Makefile
index 2d52ff0bff7d..7c39728d08de 100644
--- a/tools/tracing/rtla/Makefile
+++ b/tools/tracing/rtla/Makefile
@@ -59,7 +59,7 @@ endif
 .PHONY:	all
 all:	rtla
 
-rtla: $(OBJ) doc
+rtla: $(OBJ)
 	$(CC) -o rtla $(LDFLAGS) $(OBJ) $(LIBS)
 
 static: $(OBJ)
-- 
2.32.0


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

* Re: [PATCH] rtla: make doc build optional
  2022-01-26  0:13 [PATCH] rtla: make doc build optional Shuah Khan
@ 2022-01-26 10:32 ` Daniel Bristot de Oliveira
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel Bristot de Oliveira @ 2022-01-26 10:32 UTC (permalink / raw)
  To: Shuah Khan, rostedt; +Cc: linux-kernel

On 1/26/22 01:13, Shuah Khan wrote:
> rtla build fails due to doc build dependency on rst2man. Make
> doc build optional so rtla could be built without docs. Leave
> the install dependency on doc_install alone.
> 
> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

Acked-by: Daniel Bristot de Oliveira <bristot@kernel.org>

Thanks, Shuah!
-- Daniel

> ---
>  tools/tracing/rtla/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/tracing/rtla/Makefile b/tools/tracing/rtla/Makefile
> index 2d52ff0bff7d..7c39728d08de 100644
> --- a/tools/tracing/rtla/Makefile
> +++ b/tools/tracing/rtla/Makefile
> @@ -59,7 +59,7 @@ endif
>  .PHONY:	all
>  all:	rtla
>  
> -rtla: $(OBJ) doc
> +rtla: $(OBJ)
>  	$(CC) -o rtla $(LDFLAGS) $(OBJ) $(LIBS)
>  
>  static: $(OBJ)


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

* Re: [PATCH] rtla: make doc build optional
  2022-01-31 20:10 Shuah Khan
@ 2022-01-31 20:11 ` Shuah Khan
  0 siblings, 0 replies; 4+ messages in thread
From: Shuah Khan @ 2022-01-31 20:11 UTC (permalink / raw)
  To: bristot, rostedt; +Cc: linux-kernel, Shuah Khan

On 1/31/22 1:10 PM, Shuah Khan wrote:
> rtla build fails due to doc build dependency on rst2man. Make
> doc build optional so rtla could be built without docs. Leave
> the install dependency on doc_install alone.
> 
> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
> ---
>   tools/tracing/rtla/Makefile | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/tracing/rtla/Makefile b/tools/tracing/rtla/Makefile
> index 2d52ff0bff7d..7c39728d08de 100644
> --- a/tools/tracing/rtla/Makefile
> +++ b/tools/tracing/rtla/Makefile
> @@ -59,7 +59,7 @@ endif
>   .PHONY:	all
>   all:	rtla
>   
> -rtla: $(OBJ) doc
> +rtla: $(OBJ)
>   	$(CC) -o rtla $(LDFLAGS) $(OBJ) $(LIBS)
>   
>   static: $(OBJ)
> 

Sorry - please ignore. Picked the wrong file to send.

thanks,
-- Shuah

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

* [PATCH] rtla: make doc build optional
@ 2022-01-31 20:10 Shuah Khan
  2022-01-31 20:11 ` Shuah Khan
  0 siblings, 1 reply; 4+ messages in thread
From: Shuah Khan @ 2022-01-31 20:10 UTC (permalink / raw)
  To: bristot, rostedt; +Cc: Shuah Khan, linux-kernel

rtla build fails due to doc build dependency on rst2man. Make
doc build optional so rtla could be built without docs. Leave
the install dependency on doc_install alone.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
---
 tools/tracing/rtla/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/tracing/rtla/Makefile b/tools/tracing/rtla/Makefile
index 2d52ff0bff7d..7c39728d08de 100644
--- a/tools/tracing/rtla/Makefile
+++ b/tools/tracing/rtla/Makefile
@@ -59,7 +59,7 @@ endif
 .PHONY:	all
 all:	rtla
 
-rtla: $(OBJ) doc
+rtla: $(OBJ)
 	$(CC) -o rtla $(LDFLAGS) $(OBJ) $(LIBS)
 
 static: $(OBJ)
-- 
2.32.0


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

end of thread, other threads:[~2022-01-31 20:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-26  0:13 [PATCH] rtla: make doc build optional Shuah Khan
2022-01-26 10:32 ` Daniel Bristot de Oliveira
2022-01-31 20:10 Shuah Khan
2022-01-31 20:11 ` Shuah Khan

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.