forked from e16/e16
1
0
Fork 0

Fix installation group ownership of theme files (ticket 2345).

This commit is contained in:
Kim Woelders 2013-05-18 09:46:52 +02:00
parent 374b0cbb4d
commit 9d39a88793
1 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,7 @@ install-data-local:
for tf in $(THEME_FILES); do \
gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); tar -xmf -); \
done
-if [ -n "$(USER)" ]; then chown -R $(USER) $(THEME_DIR); else chown -R root $(THEME_DIR); fi
-if [ "$$EUID" = "0" ]; then chown -R 0:0 $(THEME_DIR); fi
uninstall-local:
-for tf in $(THEME_FILES); do \