shithub: mc

Download patch

ref: c104f230dc27e371b3cdc1893127ad74891bb0ec
parent: 96da70b6356fc720eec5469d251c8031f24313ea
author: glenda@cirno <glenda@cirno>
date: Fri May 15 07:36:19 EDT 2015

Fix all the paths.

	The last commit missed a couple.

--- a/mbld/config+plan9-x64.myr
+++ b/mbld/config+plan9-x64.myr
@@ -8,7 +8,7 @@
 	const Directlib	= true
 	const Runtime	= "_myrrt.6"
 
-	const Manpath	= "man"
+	const Manpath	= "sys/man/"
 	const Binpath	= "amd64/bin"
 	const Libpath	= "amd64/lib/myr"
 ;;
--- a/mbld/opts.myr
+++ b/mbld/opts.myr
@@ -73,7 +73,7 @@
 	opt_muse = std.getenvv("MYR_MUSE", "muse")
 	opt_runtime = std.getenvv("MYR_RT", "")
 	if opt_runtime.len == 0
-		opt_runtime = std.pathjoin([opt_instroot, "lib/myr", config.Runtime][:]) 
+		opt_runtime = std.pathjoin([opt_instroot, config.Libpath, config.Runtime][:]) 
 	;;
 
 	sysarchstr = std.fmt("+%s-%s", opt_sys, opt_arch)