Re: make: arguments can have multiple variable assignments

2023-01-17 Thread Jason McIntyre
yep, ok by me. jmc On 17 January 2023 12:03:58 GMT, Klemens Nanni wrote: >17.01.2023 06:44, Jason McIntyre пишет: >> seems correct. posix spec shows "..." too. > >Right, I didn't dig that up yet. > >In that case: OK? >

Re: make: arguments can have multiple variable assignments

2023-01-17 Thread Klemens Nanni
17.01.2023 06:44, Jason McIntyre пишет: > seems correct. posix spec shows "..." too. Right, I didn't dig that up yet. In that case: OK?

Re: make: arguments can have multiple variable assignments

2023-01-16 Thread Jason McIntyre
On Mon, Jan 16, 2023 at 10:03:03PM +, Klemens Nanni wrote: > SYNOPSIS and usage say [NAME=value] while multiple assigments are fine: > > $ make -p FOO=1 BAR=2 | grep -e^FOO -e^BAR > BAR = 2 > FOO = 1 > > I'm sure ports(7) wouldn't work if only one

make: arguments can have multiple variable assignments

2023-01-16 Thread Klemens Nanni
SYNOPSIS and usage say [NAME=value] while multiple assigments are fine: $ make -p FOO=1 BAR=2 | grep -e^FOO -e^BAR BAR = 2 FOO = 1 I'm sure ports(7) wouldn't work if only one was accepted, hence it suprises me that none of the BSDs document it