shithub: mc

Download patch

ref: cc99dfdb5dbb27ac3fed40c796a01a4269d307c2
parent: ea020690dfaacd85ca06ed17f7b3651de20132e7
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jul 23 20:01:58 EDT 2017

Add missing dependencies.

	When developing this out of tree, this was not needed.
	Now it is.

--- a/mbld/bld.sub
+++ b/mbld/bld.sub
@@ -2,8 +2,6 @@
 bin mbld =
 	build.myr
 	clean.myr
-	config.myr	# config, as generated by the ./configure script
-	config+plan9-x64.myr	# config, as hardcoded for Plan 9
 	deps.myr
 	install.myr
 	main.myr
@@ -15,6 +13,10 @@
         types.myr
 	util.myr
 
+	# probed (or hard coded) system config
+	config.myr
+	config+plan9-x64.myr
+
 	# Currently, mbld doesn't add all deps transitively.
 	# Until this gets fixed, we need to list all dependent
 	# libraries here explicitly.
@@ -22,6 +24,7 @@
 	lib ../lib/std:std
 	lib ../lib/bio:bio
 	lib ../lib/regex:regex
+	lib ../lib/thread:thread
 ;;
 
 man = mbld.1;;