configs  Diff

Differences From Artifact [5648c78309]:

To Artifact [9fdaa3ab0d]:


1
2
3
4
5
6
7

# pkgsrc does not like MAKEFLAGS being set
function bmake
	if string match -q -r '/pkgsrc$|/pkgsrc/' $PWD
		set -lx MAKEFLAGS
	end
	command bmake $argv
end




|
|
|
|
>
1
2
3
4
5
6
7
8
# pkgsrc does not like MAKEFLAGS being set
function bmake
	if string match -q -r '/pkgsrc$|/pkgsrc/' $PWD
		env MAKEFLAGS= bmake $argv
	else
		command bmake $argv
	end
end