configs  Artifact [fabfef7469]

Artifact fabfef74696998a324fe0b8b6ce1dcb55eab476efe4bfd5e403c55711cd7dfca:

  • File config/fish/functions/make.fish — part of check-in [a5517cfc6f] at 2020-01-22 00:32:31 on branch trunk — fish: Allow using make instead of bmake for pkgsrc (user: js size: 261)

# 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