libselinux: do not duplicate make target when going into subdirectory

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>
This commit is contained in:
Nicolas Iooss 2021-04-22 08:43:56 +02:00
parent d0a07a7f13
commit f63263c2d0
No known key found for this signature in database
GPG key ID: C191415F340DAAA0

View file

@ -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: