-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This patch looks good to me. acked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk9x2tEACgkQrlYvE4MpobNB4wCZAZjv78V4CcT/M+b2NPdSvTR+ 9IQAnR0+ocICKXlT4ltZ85367fKg35by =QjzN -----END PGP SIGNATURE-----
>From 810b7043d73488d0bb2e549c94f535638dd17312 Mon Sep 17 00:00:00 2001 From: Dan Walsh <dwalsh@xxxxxxxxxx> Date: Fri, 27 Jan 2012 14:41:58 -0500 Subject: [PATCH 36/73] libselinux: utils: Stop separating out matchpathcon as something special It's not special and doesn't need its own Makefile lines. Just make it a normal target. Signed-off-by: Eric Paris <eparis@xxxxxxxxxx> --- libselinux/utils/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libselinux/utils/Makefile b/libselinux/utils/Makefile index d6335da..d76ccfa 100644 --- a/libselinux/utils/Makefile +++ b/libselinux/utils/Makefile @@ -35,18 +35,16 @@ endif ifeq ($(DISABLE_BOOL),y) UNUSED_TARGETS+=getsebool togglesebool endif -TARGETS:= $(filter-out $(UNUSED_TARGETS) matchpathcon, $(TARGETS)) +TARGETS:= $(filter-out $(UNUSED_TARGETS), $(TARGETS)) -all: $(TARGETS) matchpathcon +all: $(TARGETS) install: all -mkdir -p $(USRBINDIR) install -m 755 $(TARGETS) $(USRBINDIR) -mkdir -p $(SBINDIR) - install -m 755 matchpathcon $(SBINDIR) - (cd $(BINDIR); ln -fs ../../sbin/matchpathcon) clean: - rm -f $(TARGETS) matchpathcon *.o *~ + rm -f $(TARGETS) *.o *~ distclean: clean -- 1.7.9.3