From b66a8210fd2856412fef3488628100c877a5fdc0 Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Thu, 1 Dec 2022 10:37:33 +0100 Subject: actually fix the build - scalables get installed now! Big thanks to @btwilliam on matrix --- src/fullcolor/Makefile.am | 4 ++-- 1 file 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 -- cgit v1.2.1