Leaving this here for reference, I will change the installer accordingly:
/usr/bin/make in 10.6.8 is a symlink to /usr/bin/gnumake, and some software explicitly asks for gnumake. So my sl-make should be changed to install the original binary as gnumake plus a symlink.
To fix it manually right now (assuming you have installed make via `sl-make` pkg):
/usr/bin/make in 10.6.8 is a symlink to /usr/bin/gnumake, and some software explicitly asks for gnumake. So my sl-make should be changed to install the original binary as gnumake plus a symlink.
To fix it manually right now (assuming you have installed make via `sl-make` pkg):
Code:
sudo rm /usr/bin/gnumake
sudo mv /usr/bin/make /usr/bin/gnumake
sudo ln -s /usr/bin/gnumake /usr/bin/make