When I run "make -j8 install" it sometimes fails.
That was due to running the commands for "install-contrib" before
running the commands for "install-src". The attached patch fixes this.

Ralf

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/db8e6fef-b620-b914-2f3d-a7959ed94bc9%40hemmecke.org.
>From e9103e3fbec99511803a014459e557dfc0028596 Mon Sep 17 00:00:00 2001
From: Ralf Hemmecke <[email protected]>
Date: Thu, 1 Oct 2020 21:15:55 +0200
Subject: fix install dependency

---
 Makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.in b/Makefile.in
index de18a9a2..f50f0bde 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -156,7 +156,7 @@ install-src:
 	fi
 	@echo 79 FriCAS installation finished.
 
-install-contrib:
+install-contrib: install-src
 	$(mkinstalldirs) '$(DESTDIR)$(bindir)'
 	$(mkinstalldirs) '$(DESTDIR)@emacsdatadir@'
 	cd contrib/emacs && $(MAKE) install;
-- 
2.17.1

Reply via email to