All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] include: Remove 'make install' support
@ 2026-04-22 11:31 Petr Vorel
  2026-04-22 13:29 ` [LTP] " linuxtestproject.agent
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Petr Vorel @ 2026-04-22 11:31 UTC (permalink / raw)
  To: ltp; +Cc: Ricardo B . Marlière

LTP headers aren't needed to be installed, they are unusable without LTP
core library anyway (which is not separated from sources). Therefore
newly added Makefile for 'make check' in 684cae7552 ("include/lapi: add
leaf Makefile") did not support it. Remove it also from
include/Makefile.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
Hi,

trivial patch, but I'd appreciate your ack that we really don't want
headers to be installed. Otherwise it'd have to be added also to
include/lapi/Makefile (added in 684cae7552).

Kind regards,
Petr

 include/Makefile | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/include/Makefile b/include/Makefile
index 84cd4ed6e3..7fe72a2557 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -1,19 +1,12 @@
 # SPDX-License-Identifier: GPL-2.0-or-later
 # Copyright (C) 2009, Cisco Systems Inc.
+# Copyright (c) Linux Test Project, 2026
 # Ngie Cooper, July 2009
 
 top_srcdir		?= ..
 
 include $(top_srcdir)/include/mk/env_pre.mk
 
-INSTALL_DIR		:= $(includedir)
-
-INSTALL_MODE		:= 00644
-
-INSTALL_TARGETS		:= *.h
-
-MAKE_TARGETS		:=
-
 .PHONY: ac-clean ac-distclean ac-maintainer-clean distclean maintainer-clean
 distclean:: clean ac-distclean
 maintainer-clean:: distclean ac-maintainer-clean
-- 
2.53.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] include: Remove 'make install' support
  2026-04-22 11:31 [LTP] [PATCH 1/1] include: Remove 'make install' support Petr Vorel
@ 2026-04-22 13:29 ` linuxtestproject.agent
  2026-04-22 21:12 ` [LTP] [PATCH 1/1] " Ricardo B. Marlière via ltp
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: linuxtestproject.agent @ 2026-04-22 13:29 UTC (permalink / raw)
  To: Petr Vorel; +Cc: ltp, LTP AI Reviewer

Hi Petr,

On Wed, 22 Apr 2026, Petr Vorel wrote:
> include: Remove 'make install' support

> +# Copyright (c) Linux Test Project, 2026

Nit: existing line above uses "(C)" (uppercase); "(c)" here is inconsistent.

Reviewed-by: LTP AI Reviewer <ltp-ai@noreply.github.com>

---
Note:

Our agent completed the review of the patch. The full review can be
found at: <review_url>

The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.

Regards,
LTP AI Reviewer

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] include: Remove 'make install' support
  2026-04-22 11:31 [LTP] [PATCH 1/1] include: Remove 'make install' support Petr Vorel
  2026-04-22 13:29 ` [LTP] " linuxtestproject.agent
@ 2026-04-22 21:12 ` Ricardo B. Marlière via ltp
  2026-04-23  2:18 ` Li Wang
  2026-04-24  6:27 ` Jan Stancek via ltp
  3 siblings, 0 replies; 6+ messages in thread
From: Ricardo B. Marlière via ltp @ 2026-04-22 21:12 UTC (permalink / raw)
  To: Petr Vorel, ltp; +Cc: ltp, Ricardo B . Marlière

On Wed Apr 22, 2026 at 8:31 AM -03, Petr Vorel wrote:
> LTP headers aren't needed to be installed, they are unusable without LTP
> core library anyway (which is not separated from sources). Therefore
> newly added Makefile for 'make check' in 684cae7552 ("include/lapi: add
> leaf Makefile") did not support it. Remove it also from
> include/Makefile.
>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>

Reviewed-by: Ricardo B. Marlière <rbm@suse.com>

> ---
> Hi,
>
> trivial patch, but I'd appreciate your ack that we really don't want
> headers to be installed. Otherwise it'd have to be added also to
> include/lapi/Makefile (added in 684cae7552).

Thanks!

>
> Kind regards,
> Petr
>
>  include/Makefile | 9 +--------
>  1 file changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/include/Makefile b/include/Makefile
> index 84cd4ed6e3..7fe72a2557 100644
> --- a/include/Makefile
> +++ b/include/Makefile
> @@ -1,19 +1,12 @@
>  # SPDX-License-Identifier: GPL-2.0-or-later
>  # Copyright (C) 2009, Cisco Systems Inc.
> +# Copyright (c) Linux Test Project, 2026
>  # Ngie Cooper, July 2009
>  
>  top_srcdir		?= ..
>  
>  include $(top_srcdir)/include/mk/env_pre.mk
>  
> -INSTALL_DIR		:= $(includedir)
> -
> -INSTALL_MODE		:= 00644
> -
> -INSTALL_TARGETS		:= *.h
> -
> -MAKE_TARGETS		:=
> -
>  .PHONY: ac-clean ac-distclean ac-maintainer-clean distclean maintainer-clean
>  distclean:: clean ac-distclean
>  maintainer-clean:: distclean ac-maintainer-clean


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] include: Remove 'make install' support
  2026-04-22 11:31 [LTP] [PATCH 1/1] include: Remove 'make install' support Petr Vorel
  2026-04-22 13:29 ` [LTP] " linuxtestproject.agent
  2026-04-22 21:12 ` [LTP] [PATCH 1/1] " Ricardo B. Marlière via ltp
@ 2026-04-23  2:18 ` Li Wang
  2026-04-24  6:27 ` Jan Stancek via ltp
  3 siblings, 0 replies; 6+ messages in thread
From: Li Wang @ 2026-04-23  2:18 UTC (permalink / raw)
  To: Petr Vorel; +Cc: Ricardo B . Marlière, ltp

Petr Vorel <pvorel@suse.cz> wrote:

> LTP headers aren't needed to be installed, they are unusable without LTP
> core library anyway (which is not separated from sources). Therefore
> newly added Makefile for 'make check' in 684cae7552 ("include/lapi: add
> leaf Makefile") did not support it. Remove it also from
> include/Makefile.

That's right, we don't need to install the LTP headers.

Reviewed-by: Li Wang <wangli.ahau@gmail.com>


-- 
Regards,
Li Wang

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] include: Remove 'make install' support
  2026-04-22 11:31 [LTP] [PATCH 1/1] include: Remove 'make install' support Petr Vorel
                   ` (2 preceding siblings ...)
  2026-04-23  2:18 ` Li Wang
@ 2026-04-24  6:27 ` Jan Stancek via ltp
  2026-04-24 10:18   ` Petr Vorel
  3 siblings, 1 reply; 6+ messages in thread
From: Jan Stancek via ltp @ 2026-04-24  6:27 UTC (permalink / raw)
  To: Petr Vorel; +Cc: Ricardo B . Marlière, ltp

On Wed, Apr 22, 2026 at 1:31 PM Petr Vorel <pvorel@suse.cz> wrote:
>
> LTP headers aren't needed to be installed, they are unusable without LTP
> core library anyway (which is not separated from sources). Therefore
> newly added Makefile for 'make check' in 684cae7552 ("include/lapi: add
> leaf Makefile") did not support it. Remove it also from
> include/Makefile.
>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>

Acked-by: Jan Stancek <jstancek@redhat.com>


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] include: Remove 'make install' support
  2026-04-24  6:27 ` Jan Stancek via ltp
@ 2026-04-24 10:18   ` Petr Vorel
  0 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2026-04-24 10:18 UTC (permalink / raw)
  To: Jan Stancek; +Cc: Ricardo B . Marlière, ltp

> On Wed, Apr 22, 2026 at 1:31 PM Petr Vorel <pvorel@suse.cz> wrote:

> > LTP headers aren't needed to be installed, they are unusable without LTP
> > core library anyway (which is not separated from sources). Therefore
> > newly added Makefile for 'make check' in 684cae7552 ("include/lapi: add
> > leaf Makefile") did not support it. Remove it also from
> > include/Makefile.

> > Signed-off-by: Petr Vorel <pvorel@suse.cz>

> Acked-by: Jan Stancek <jstancek@redhat.com>

Jan, thanks for your ack. I merged patch yesterday, I'm sorry, unfortunately I
forgot to write that on ML. Next time I'll wait a bit longer and verify that I
replied that patch was merged (it'd be great to have tooling to post info about
merging).

Kind regards,
Petr

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

end of thread, other threads:[~2026-04-24 10:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-22 11:31 [LTP] [PATCH 1/1] include: Remove 'make install' support Petr Vorel
2026-04-22 13:29 ` [LTP] " linuxtestproject.agent
2026-04-22 21:12 ` [LTP] [PATCH 1/1] " Ricardo B. Marlière via ltp
2026-04-23  2:18 ` Li Wang
2026-04-24  6:27 ` Jan Stancek via ltp
2026-04-24 10:18   ` Petr Vorel

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.