Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing iulib - config.status: error: cannot find input file: Makefile.in

I'm trying to install iulib on a Os X 10.5 but when I run the ./configure command it returns the following error:

config.status: error: cannot find input file: Makefile.in

I've also tried to run ./build but it returns:

configure.ac:8: version mismatch. This is Automake 1.10

How can I fix it?

like image 749
Giorgio Avatar asked Mar 04 '26 02:03

Giorgio


1 Answers

Try

automake --add-missing

or just

automake

It should create your Makefile.in.

like image 174
Atila Romero Avatar answered Mar 05 '26 17:03

Atila Romero