Does anyone out there uses a lock command that's not the `default' one in infrastructure/build/dolock ?
I've committed an extension to it that allows to put comments in the lockfile, and I'd like to use it to store the BUILD_PKGPATH inside the lock. I've got a small shell-script that tells me where I am during bulk package builds, and with this I get more info. #! /bin/sh echo -n "Installed: "; ls /var/db/pkg/|wc -l echo -n "Built: "; ls /usr/ports/packages/`arch -s`/all|wc -l echo -n "No-arch: "; ls /usr/ports/packages/no-arch|wc -l cd /tmp/ && ls -t *.lock|xargs grep -o ''
