Menu

#40 csv doesn't compile : missing makefile.in

open
nobody
None
5
2013-08-18
2012-08-18
v1nce
No

Hi,

When I tried ./configure for csv it stalled with
config.status: error: cannot find input file: `Makefile.in'

I tried aclocal; automake with no luck

Discussion

  • v1nce

    v1nce - 2012-08-19

    running the folowing commands should do the trick

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

     
  • Kevin Brubeck Unhammer

    You can also do just

    autoreconf -i
    ./configure
    make
    sudo make install

    (The autoreconf -i trick has helped me with a lot of svn/cvs/git repos that omit the autogen.sh file.)

     

Log in to post a comment.