diff options
author | Ivor Uhliarik <[email protected]> | 2013-04-07 23:16:13 +0200 |
---|---|---|
committer | Ivor Uhliarik <[email protected]> | 2013-04-07 23:16:13 +0200 |
commit | b4167a4d733f56a1853c1fffdbe0491fe0e0e989 (patch) | |
tree | 14356273b2dc8cdac57ab8ed393b3151a675a0f1 /src/Makefile.am | |
parent | 57786f8dd0edcabf9edefbe1d1c56cd46ef26b94 (diff) | |
download | mate-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.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
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; \ |