Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autoconf fails: configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.." #25

Open
ilka-schulz opened this issue Dec 21, 2021 · 1 comment

Comments

@ilka-schulz
Copy link

The INSTALL doc says to run ./configure but of course that file does not exist. Running autotools throws this error:

$ aclocal
pbc/parser.y:20.1-14: warning: deprecated directive: ‘%error-verbose’, use ‘%define parse.error verbose’ [-Wdeprecated]
   20 | %error-verbose
      | ^~~~~~~~~~~~~~
      | %define parse.error verbose
pbc/parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
aclocal: warning: couldn't open directory 'm4': No such file or directory

$ autoconf 
pbc/parser.y:20.1-14: warning: deprecated directive: '%error-verbose', use '%define parse.error verbose' [-Wdeprecated]
   20 | %error-verbose
      | ^~~~~~~~~~~~~~
      | %define parse.error verbose
pbc/parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]

$ ./configure 
configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."

Does anyone know a working build route?

@ilka-schulz
Copy link
Author

This appears to work:

libtoolize --force
aclocal
autoheader
automake --add-missing
autoconf
./configure
make
sudo make install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant