configs  make.fish at [a5517cfc6f]

File config/fish/functions/make.fish artifact fabfef7469 part of check-in a5517cfc6f


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