ftdi_eeprom: Fix git build problems by using autoreconf
authorJim Paris <jim@jtan.com>
Fri, 22 May 2009 18:48:56 +0000 (14:48 -0400)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 25 May 2009 15:15:27 +0000 (17:15 +0200)
commit2ede4aac4fd0726e86e88fe7bbfef2da2c29afd5
treed4406044a20413aac39596d94eadaf8b3a51e64f
parent996e9eee10870815423301c8805545e45d106286
ftdi_eeprom: Fix git build problems by using autoreconf

For recent versions of automake, the autotools steps in Makefile.cvs
don't work:
  $ make -f Makefile.cvs
  aclocal
  autoheader
  automake
  configure.in: required file `./install-sh' not found
  configure.in: required file `./mkinstalldirs' not found
  configure.in: required file `./missing' not found
  src/Makefile.am: required file `./depcomp' not found
  make: *** [all] Error 1

This is because automake no longer calls libtoolize, as described in:
  http://www.gnu.org/software/automake/manual/html_node/Error-required-file-ltmain_002esh-not-found.html
The recommended workaround there is to use autoreconf rather than
calling individual autotools programs.

This patch also removes the use of all_includes and all_libraries, as
they are undefined and cause automake errors.

Signed-off-by: Jim Paris <jim@jtan.com>
Makefile.cvs
src/Makefile.am