From 3de462f2108cb2be990bba95fee04f45899a4d44 Mon Sep 17 00:00:00 2001 From: c_14 Date: Mon, 7 May 2018 18:48:33 +0200 Subject: [PATCH] Fix parallel `make install' Prior to this commit, running make install with -j > 1 caused an (easily reproducible) race condition where make tried linking commands that hadn't been installed yet. --- uip/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/Makefile.in b/uip/Makefile.in index e7e7b46..e0c280f 100644 --- a/uip/Makefile.in +++ b/uip/Makefile.in @@ -244,7 +244,7 @@ install-cmds: done # install links -install-lcmds: +install-lcmds: install-cmds rm -f $(DESTDIR)$(bindir)/flists rm -f $(DESTDIR)$(bindir)/folders rm -f $(DESTDIR)$(bindir)/fnext -- 1.7.10.4