From 9b796ead1a18f2c59d5b660c986cbdb2e6b5f83c Mon Sep 17 00:00:00 2001 From: Dan Walsh Date: Fri, 27 Jan 2012 14:41:58 -0500 Subject: [PATCH] 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 Acked-by: Dan Walsh --- libselinux/utils/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libselinux/utils/Makefile b/libselinux/utils/Makefile index d6335da1..d76ccfad 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