summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Cantrell <david.l.cantrell@gmail.com>2020-04-07 11:08:59 -0400
committerDavid Cantrell <david.l.cantrell@gmail.com>2020-04-07 11:08:59 -0400
commite2a5fcb51513d0a34be498a1105264c9fce9bb8f (patch)
treeb2eebfd76fddc6a6c44fef66d75e83dfe812fdb0 /src
parent04c8c356a72be7267978e4971bb6d3e2ed482bfc (diff)
downloadadwaita-icon-theme-e2a5fcb51513d0a34be498a1105264c9fce9bb8f.tar.gz
Small portability and syntax errors fixed in Makefile.am files
Two things: 1) Remove unnecessary 'echo -e' in src/fullcolor/Makefile.am 2) Join size= variable with the rest of the install-data-local target in src/spinner/Makefile.am
Diffstat (limited to 'src')
-rw-r--r--src/fullcolor/Makefile.am2
-rw-r--r--src/spinner/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fullcolor/Makefile.am b/src/fullcolor/Makefile.am
index 1c940a51b..d73529b82 100644
--- a/src/fullcolor/Makefile.am
+++ b/src/fullcolor/Makefile.am
@@ -5,7 +5,7 @@ $(render_sizes): Makefile
install-data-local:
for size in $(render_sizes); do \
- echo -e "Going to copy files for $$size"; \
+ echo "Going to copy files for $$size"; \
for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size && find . -name "*.png"`; do \
context="`dirname $$file`"; \
$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \
diff --git a/src/spinner/Makefile.am b/src/spinner/Makefile.am
index 86f4d7cde..c14caf68c 100644
--- a/src/spinner/Makefile.am
+++ b/src/spinner/Makefile.am
@@ -20,7 +20,7 @@ render: render-png
all-local: render
install-data-local:
- size='scalable-up-to-32'
+ size='scalable-up-to-32' ; \
for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size; find . -name "*.png"`; do \
context="`dirname $$file`"; \
$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \