From c50449670b3b4292f463b1b80894abb8de2dc91b Mon Sep 17 00:00:00 2001 From: Tobias Ellinghaus Date: Sun, 15 Apr 2018 16:10:04 +0200 Subject: [PATCH] Fix build with vector icons enabled The invert-svg tool was never built so generating the Symbolic-Inverted icons failed. Thanks Ell for the hint how to fix this. --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index fd62fc2a2f..117560bb80 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -61,7 +61,7 @@ invert-svg$(BUILD_EXEEXT): invert-svg.c #compute_svg_viewbox_LDADD = $(SVG_LIBS) # Build tools which must be built for the host platform. -all: invert-svg$(BUILD_EXEEXT) +all-local: invert-svg$(BUILD_EXEEXT) DISTCLEANFILES = invert-svg$(BUILD_EXEEXT) endif