Error:Can’t exec “make”: No such file or directory at ./scripts/feeds line 22.
Solution:
Run the below command to see if make is installed in the system.
# whereis make
If there are no results displayed, then install make
as shown below:
On Ubuntu variants:
# apt-get install build-essential
The build-essential
package will install other tools that are required along with make
.
On CentOS/Fedora/RedHat variants:
# yum groupinstall "Development Tools"