]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Makefile.in: Use the variable MAKE instead of the make command
authorFrancois-Xavier Le Bail <[email protected]>
Mon, 8 May 2023 08:41:28 +0000 (10:41 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Mon, 8 May 2023 08:56:51 +0000 (10:56 +0200)
From https://www.gnu.org/software/make/manual/make.html#MAKE-Variable:
```
Recursive make commands should always use the variable MAKE, not the
explicit command name 'make', as shown here:

subsystem:
cd subdir && $(MAKE)
```

This should avoid the following warning when running 'make releasecheck'
in some cases:
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent
make rule.


No differences found