shithub: front

Download patch

ref: 0b58d6e95f009cfb009949f93c4f97e9bf3b8c18
parent: c8687e45fde7f483c26042e24f4697935d709674
author: Ori Bernstein <ori@eigenstate.org>
date: Wed Jul 23 13:01:14 EDT 2025

git: fix 'mk clean'

having 'git/rm' in the directory confuses 'mk clean'
because the current directory comes first in the path.

--- a/sys/src/cmd/git/mkfile
+++ b/sys/src/cmd/git/mkfile
@@ -1,5 +1,7 @@
 </$objtype/mkfile
 
+path=/bin # git/rm confuses the mk rules
+
 BIN=/$objtype/bin/git
 TARG=\
 	conf\
--