git: 9front

Download patch

ref: 3feab2b375f0c6a2f5e09a310fd7a0e713539d35
parent: d6eec8afb037cf032c1daa38f973750cf4edfe69
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Feb 19 23:22:35 EST 2023

cmd/mkfile: don't recurse into test/ when looping

the test mkfile doesn't support targets like install

--- a/sys/src/cmd/mkfile
+++ b/sys/src/cmd/mkfile
@@ -10,7 +10,7 @@
 
 PCONLY=vmx
 POWERLESS=dtracy  # until someone fixes the build for power
-NOMK=$NOMK `{~ $objtype (386 amd64) || echo $PCONLY} `{~ $objtype power && echo $POWERLESS}
+NOMK=$NOMK test `{~ $objtype (386 amd64) || echo $PCONLY} `{~ $objtype power && echo $POWERLESS}
 DIRS=`{echo */mkfile | sed 's,/mkfile *,\n,g' | grep -v '-e^'^('' $NOMK)^'$'}
 
 usage:VQ:
--