]> The Tcpdump Group git mirrors - tcpdump/commit
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)
commit935c78eba798706b3c6aa3106522439bf1fc9d3b
tree25cf5574ff7267cb019df8eb35322e5d1d446d99
parentc793dbef549f0c7bad09daa33e0b4bf5d1f62f04
Makefile.in: Use the variable MAKE instead of the make command

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.
Makefile.in