libirecovery
libirecovery copied to clipboard
Issue with ./autogen.sh and subsequently make
Currently, on OS X, ./autogen ends with an error after trying to create the Makefile
config.status: error: cannot find input file:
src/Makefile.in'`
It appears that a makefile gets created anyway. When trying to make, the current output is
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
/Library/Developer/CommandLineTools/usr/bin/make all-recursive
Making all in src
make[2]: *** No rule to make target `all'. Stop.
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
Make install fails similarly
Making install in src
make[1]: *** No rule to make target `install'. Stop.
make: *** [install-recursive] Error 1
+1
I encountered this issue today
I ran brew install libtool
which was declared as missing by the autogen
,
- ran
automake
which says to... - ...run
aclocal
... - ...and
autoconf
- then I re-ran
automake
which failed. - NEVERMIND,
- I ran
./autogen.sh
and the process end successfully.
I think running only the first step is useful
Hope it will help someone :)