From e2a5fcb51513d0a34be498a1105264c9fce9bb8f Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Tue, 7 Apr 2020 11:08:59 -0400 Subject: 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 --- src/fullcolor/Makefile.am | 2 +- src/spinner/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; \ -- cgit v1.2.1