configure: error: cannot find install-sh, install.sh

configure: error: cannot find install-sh, install.sh

When try to configure an open source code, I get error like this :

configure: error: cannot find install-sh, install.sh, or shtool in “.” “./..” “./../..”

Add command :

autoreconf -f -i -Wall,no-obsolete

before you call configure command to remove configure: error: cannot find install-sh, install.sh, or shtool in “.” “./..” “./../..” error message. This command will create a requirement “install”. So, when you running configure command again, you will not meet error configure: error: cannot find install-sh, install.sh, or shtool in “.” “./..” “./../..” again.

The complete command is like this :

autoreconf -f -i -Wall,no-obsolete
./configure
One Comment

Leave a Reply to Naja Cancel reply

Your email address will not be published. Required fields are marked *