git: 9front

Download patch

ref: 12d543a1fc2a2cfce8ac25bf8402abb65a7c01c8
parent: 4798908c457c6bc11a41a0f5a54f42c05d25b587
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Sep 16 12:21:40 EDT 2019

ape: don't hardcode list of ape library directories in /sys/src/ape/lib/mkfile

this change allows one to drop library directories (like
freetype) into /sys/src/ape/lib/ and have them built without
having to change the mkfile.

--- a/sys/src/ape/lib/mkfile
+++ b/sys/src/ape/lib/mkfile
@@ -1,6 +1,6 @@
 </$objtype/mkfile
 
-DIRS=9 ap auth bio bsd bz2 draw fmt l mp net sec utf v z
+DIRS=`{echo */}
 
 none:V:
 	echo mk all, install, installall, clean, or nuke
--