diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2006-01-22 23:25:19 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2006-01-22 23:25:19 +0000 |
commit | d0dd2292ac85bdd58eb4b82b8d10ca41a14f55ec (patch) | |
tree | 2fbd3b798e74bd861e2a6e8f6a557038d171dee4 | |
parent | 3af7f4d7529cf8628ef9513141a69b80fae183c7 (diff) | |
download | xine-lib-d0dd2292ac85bdd58eb4b82b8d10ca41a14f55ec.tar.gz xine-lib-d0dd2292ac85bdd58eb4b82b8d10ca41a14f55ec.tar.bz2 |
- Fix error when the file didn't already have an SELinux context
chcon: can't apply partial context to unlabeled file /opt/lib/libxine.so
CVS patchset: 7840
CVS date: 2006/01/22 23:25:19
-rw-r--r-- | misc/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/Makefile.common b/misc/Makefile.common index 780eb86aa..ae704133b 100644 --- a/misc/Makefile.common +++ b/misc/Makefile.common @@ -15,8 +15,8 @@ install-data-hook: if test -n "$$list" ; then \ for p in $$list; do \ p="`echo $$p | sed -e 's/\.la$$/\.so/g;s|^.*/||'`"; \ - echo " chcon -t texrel_shlib_t $(DESTDIR)$(libdir)/$$p"; \ - chcon -t texrel_shlib_t $(DESTDIR)$(libdir)/$$p; \ + echo " 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 |