summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvor Uhliarik <[email protected]>2013-04-07 23:16:13 +0200
committerIvor Uhliarik <[email protected]>2013-04-07 23:16:13 +0200
commitb4167a4d733f56a1853c1fffdbe0491fe0e0e989 (patch)
tree14356273b2dc8cdac57ab8ed393b3151a675a0f1
parent57786f8dd0edcabf9edefbe1d1c56cd46ef26b94 (diff)
downloadmate-icon-theme-b4167a4d733f56a1853c1fffdbe0491fe0e0e989.tar.bz2
mate-icon-theme-b4167a4d733f56a1853c1fffdbe0491fe0e0e989.tar.xz
On make install, the Makefile will now copy .icon files into the package dir too, allowing for
text-x-preview.icon (a requirement for text file preview) to be included in the package.
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 985ce3d..0cd35a2 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -6,7 +6,7 @@ $(render_sizes): Makefile
install-data-local:
for size in $(render_sizes); do \
echo -e "Going to copy files for $$size"; \
- for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.png"`; do \
+ for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.png" -o -name "*.icon"`; do \
context="`dirname $$file`"; \
$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \
$(install_sh_DATA) $(top_srcdir)/$(SVGOUTDIR)/$$size/$$file $(DESTDIR)$(themedir)/$$size/$$file; \