configs  Artifact [39b2ede27d]

Artifact 39b2ede27d7514af24b886cd3405d7d64968bb89a663adf342c486252964d07c:


# 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
		env MAKEFLAGS= bmake $argv
	else
		command make $argv
	end
end