[11:12:10] <koobs> I've had a user report an issue with the FreeBSD port for Pillow. We have to pass build arguments to the build(_ext) stage of installation, in order to find tk/tcl libs and include for tkinter, but since "install" runs build as well, we get a second build (i dont know why it doesnt detect it's already been built), and since the seperate install stage doesnt contain build arguments, tkinter is not found in the
[11:13:58] <koobs> I've tried to fiddling with combined build build_ext as a single target, but that is *very* hacky and unrealiable. I've tried --skip-build as well, but again this feels like a workaround for something that ought to be fixed upstream
[11:14:53] <koobs> Im pretty sure this has to do with the custom build_ext class in Pillow setup.py, but im a little over my head in terms of isolating it