configs  Artifact [3fa00d1f43]

Artifact 3fa00d1f438f6817a18803dc843d9ef6584d9118725370b7fc03321895463fbe:

  • File config/fish/functions/make.fish — part of check-in [6fc784e055] at 2020-02-02 21:18:20 on branch trunk — fish: Slight improvement of prompt (user: js size: 285)

# 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