All of lore.kernel.org
 help / color / mirror / Atom feed
From: Petr Lautrbach <plautrba@redhat.com>
To: Nicolas Iooss <nicolas.iooss@m4x.org>, selinux@vger.kernel.org
Subject: Re: [PATCH] libselinux: do not duplicate make target when going into subdirectory
Date: Mon, 26 Apr 2021 13:56:43 +0200	[thread overview]
Message-ID: <87bla1w96s.fsf@redhat.com> (raw)
In-Reply-To: <20210422064356.249361-1-nicolas.iooss@m4x.org>

Nicolas Iooss <nicolas.iooss@m4x.org> writes:

> When running "make install-pywrap", make displays:
>
>     make[1]: Entering directory '/root/selinux/libselinux'
>     make -C src install-pywrap install-pywrap
>     make[2]: Entering directory '/root/selinux/libselinux/src'
>
> The duplicated "install-pywrap" is not expected. Remove it from the
> Makefile.
>
> Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>

Acked-by: Petr Lautrbach <plautrba@redhat.com>

Thanks!


> ---
>  libselinux/Makefile | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/libselinux/Makefile b/libselinux/Makefile
> index ac16c15e8d0a..439bc6a9b7fd 100644
> --- a/libselinux/Makefile
> +++ b/libselinux/Makefile
> @@ -50,24 +50,24 @@ all install relabel clean distclean indent:
>  	done
>  
>  swigify: all
> -	$(MAKE) -C src swigify $@
> +	$(MAKE) -C src $@
>  
>  pywrap: 
> -	$(MAKE) -C src pywrap $@
> +	$(MAKE) -C src $@
>  
>  rubywrap: 
> -	$(MAKE) -C src rubywrap $@
> +	$(MAKE) -C src $@
>  
>  install-pywrap: 
> -	$(MAKE) -C src install-pywrap $@
> +	$(MAKE) -C src $@
>  
>  install-rubywrap: 
> -	$(MAKE) -C src install-rubywrap $@
> +	$(MAKE) -C src $@
>  
>  clean-pywrap:
> -	$(MAKE) -C src clean-pywrap $@
> +	$(MAKE) -C src $@
>  
>  clean-rubywrap:
> -	$(MAKE) -C src clean-rubywrap $@
> +	$(MAKE) -C src $@
>  
>  test:
> -- 
> 2.31.0


  reply	other threads:[~2021-04-26 11:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22  6:43 [PATCH] libselinux: do not duplicate make target when going into subdirectory Nicolas Iooss
2021-04-26 11:56 ` Petr Lautrbach [this message]
2021-04-30 19:24   ` Nicolas Iooss

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87bla1w96s.fsf@redhat.com \
    --to=plautrba@redhat.com \
    --cc=nicolas.iooss@m4x.org \
    --cc=selinux@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.