September 29, 2012
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
Thank you!
Your advice really works