configs  Artifact [3fa00d1f43]

Artifact 3fa00d1f438f6817a18803dc843d9ef6584d9118725370b7fc03321895463fbe:


# Automatically use bmake instead of make when using pkgsrc
function make
	if which bmake >/dev/null ^&1 && \
	    string match -q -r '/pkgsrc$|/pkgsrc/' $PWD
		# pkgsrc does not like MAKEFLAGS including -j
		set -lx MAKEFLAGS
		command bmake $argv
	else
		command make $argv
	end
end