summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2022-12-01 10:37:33 +0100
committerJakub Steiner <jimmac@gmail.com>2022-12-01 10:37:33 +0100
commitb66a8210fd2856412fef3488628100c877a5fdc0 (patch)
tree306c2b9093ac69029ced20ca4eae1a325a3150c2
parent5a6b10a7fd8a37889c7db32be53c1eaf3246ae2d (diff)
downloadadwaita-icon-theme-b66a8210fd2856412fef3488628100c877a5fdc0.tar.gz
actually fix the build
- scalables get installed now! Big thanks to @btwilliam on matrix
-rw-r--r--src/fullcolor/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fullcolor/Makefile.am b/src/fullcolor/Makefile.am
index 47223a819..2d0e67cde 100644
--- a/src/fullcolor/Makefile.am
+++ b/src/fullcolor/Makefile.am
@@ -6,7 +6,7 @@ $(render_sizes): Makefile
install-data-local:
for size in $(render_sizes); do \
echo "Going to copy files for $$size"; \
- for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.{png,svg}"`; do \
+ for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.png" -o -name "*.svg"`; do \
context="`dirname $$file`"; \
$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \
$(install_sh_DATA) $(top_srcdir)/$(SVGOUTDIR)/$$size/$$file $(DESTDIR)$(themedir)/$$size/$$file & \
@@ -18,7 +18,7 @@ install-data-local:
## FIXME we should add a way to remove links generated by icon mapping
uninstall-local:
for size in $(render_sizes); do \
- for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.{png,svg}"`; do \
+ for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.png" -o -name "*.svg"`; do \
rm -f $(DESTDIR)$(themedir)/$$size/$$file; \
done; \
done