diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2006-06-18 21:13:29 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2006-06-18 21:13:29 +0000 |
commit | 4c03d1188744443e99e75b36477254b15b07483c (patch) | |
tree | ee3c4afa2cea679fd73126868ef1440bdc50023a | |
parent | d0f262a077c21c8756ac9475cb779f38532af870 (diff) | |
download | xine-lib-4c03d1188744443e99e75b36477254b15b07483c.tar.gz xine-lib-4c03d1188744443e99e75b36477254b15b07483c.tar.bz2 |
- don't stop the installation if the chcon doesn't work for
whatever reason
CVS patchset: 8058
CVS date: 2006/06/18 21:13:29
-rw-r--r-- | misc/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/Makefile.common b/misc/Makefile.common index ae704133b..2ed4916a3 100644 --- a/misc/Makefile.common +++ b/misc/Makefile.common @@ -16,7 +16,7 @@ install-data-hook: for p in $$list; do \ p="`echo $$p | sed -e 's/\.la$$/\.so/g;s|^.*/||'`"; \ echo " chcon system_u:object_r:texrel_shlib_t $(DESTDIR)$(libdir)/$$p"; \ - chcon system_u:object_r:texrel_shlib_t $(DESTDIR)$(libdir)/$$p; \ + chcon system_u:object_r:texrel_shlib_t $(DESTDIR)$(libdir)/$$p || :; \ done; \ fi; \ fi |