Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 592134beac454449658ff54e7dceefb5 > files > 7

elementary-xfce-0.13.1-3.mga7.src.rpm

From 84e430fc59826a0a157574c6a7c38cced14f24d8 Mon Sep 17 00:00:00 2001
From: Guido Falsi <mad@madpilot.net>
Date: Wed, 16 Jan 2019 15:18:04 +0100
Subject: [PATCH 07/10] Avoid race condition when using parallelization.

Otherwise the build target can run before svntopng is compiled.
---
 Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 6f089f12..10dd5778 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,7 +3,7 @@ DESTDIR=
 
 SUBDIRS := svgtopng
 
-all: $(SUBDIRS) build
+all: build
 
 $(SUBDIRS):
 	$(MAKE) -C $@
@@ -29,7 +29,7 @@ icon-caches:
 	gtk-update-icon-cache -f $(DESTDIR)/$(PREFIX)/share/icons/elementary-xfce-darker
 	gtk-update-icon-cache -f $(DESTDIR)/$(PREFIX)/share/icons/elementary-xfce-darkest
 
-build: builddir
+build: builddir $(SUBDIRS)
 	chmod +x ./svgtopng/pngtheme.sh
 	@./svgtopng/pngtheme.sh build/elementary-xfce
 	@./svgtopng/pngtheme.sh build/elementary-xfce-dark
-- 
2.20.1