New issue by rudzik8 on void-packages repository https://github.com/void-linux/void-packages/issues/50812 Description: ### Is this a new report? Yes ### System Info Void 6.6.32_1 x86_64 AuthenticAMD notuptodate rFFF ### Package(s) Affected make-4.4.1_1 ### Does a report exist for this bug with the project's home (upstream) and/or another distro? _No response_ ### Expected behaviour Since our `make` implementation is GNU Make, it is really weird for it to not include a symlink for `gmake`. For example, this is the output of `ls -l /usr/bin/ | grep "make"` on an Ubuntu system with `make` package installed is: ``` lrwxrwxrwx 1 root root 4 Feb 15 2022 gmake -> make -rwxr-xr-x 1 root root 255696 Feb 15 2022 make -rwxr-xr-x 1 root root 4905 Feb 15 2022 make-first-existing-target ``` And all `gmake` commands resolve without any problems there. ### Actual behaviour CMake checks for `gmake` don't pass, its "simple test program" to verify `cc` doesn't compile (because it expects `gmake` to exist, and doesn't find it), and nobody's happy. :( This is, however, easily fixed by doing `sudo ln -s /usr/bin/make /usr/bin/gmake`. ### Steps to reproduce Try CMake'ing anything on a new Void install with `make` and `gcc` installed. [In my case, it was Minetest (+ its deps ofc)](https://github.com/minetest/minetest/issues/14746)