exclude SVGs from installation

This commit is contained in:
Tilman Kranz 2023-12-10 23:14:02 +01:00
parent cad9979d7b
commit 833dbc798c

View File

@ -19,6 +19,6 @@ install-bin:
install-template:
$(INSTALL) -d -m 0755 "$(DESTDIR)$(LIBDIR)"
$(INSTALL) -d -m 0755 "$(DESTDIR)$(TEMPLATEDIR)"
tar cf - -C template . | (cd "$(DESTDIR)$(TEMPLATEDIR)" && tar xf -)
tar cf - -C template --exclude "*.svg" . | (cd "$(DESTDIR)$(TEMPLATEDIR)" && tar xf -)
install: install-bin install-template