policycoreutils: do not fail to install if unable to make load_policy lnk file
With the switch in Fedora to unify /bin to /usr/bin the link file created for load_policy points back at itself. This patch causes make to continue even if the link fails. Signed-off-by: Eric Paris <eparis@redhat.com>
This commit is contained in:
parent
cb9a5c40af
commit
aa34f19543
|
@ -19,7 +19,7 @@ install: all
|
|||
test -d $(MANDIR)/man8 || install -m 755 -d $(MANDIR)/man8
|
||||
install -m 644 load_policy.8 $(MANDIR)/man8/
|
||||
-mkdir -p $(USRSBINDIR)
|
||||
ln -sf /sbin/load_policy $(USRSBINDIR)/load_policy
|
||||
-ln -sf /sbin/load_policy $(USRSBINDIR)/load_policy
|
||||
|
||||
clean:
|
||||
-rm -f $(TARGETS) *.o
|
||||
|
|
Loading…
Reference in New Issue