Removed .svn

This commit is contained in:
Stefan Ritt 2015-03-25 10:24:26 +01:00
parent e089c20ce8
commit 73be9f38de

View File

@ -195,10 +195,10 @@ install: $(EXECS)
@echo "Installing themes to $(ELOGDIR)/themes" @echo "Installing themes to $(ELOGDIR)/themes"
@$(INSTALL) -m 0644 themes/default/icons/* $(ELOGDIR)/themes/default/icons/ @$(INSTALL) -m 0644 themes/default/icons/* $(ELOGDIR)/themes/default/icons/
@for file in `find themes/default -type f | grep -v .svn` ;\ @for file in `find themes/default -type f` ;\
do \ do \
if [ ! -f $(ELOGDIR)/themes/default/`basename $$file` ]; then \ if [ ! -f $(ELOGDIR)/themes/default/`basename $$file` ]; then \
$(INSTALL) -m 0644 $$file $(ELOGDIR)/themes/default/`basename $$file` ;\ $(INSTALL) -m 0644 $$file $(ELOGDIR)/themes/default/`basename $$file` ; \
fi; \ fi; \
done done