1
1
Fork 0
configs/config/fish/functions/bmake.fish

8 lines
172 B
Fish

# 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