Hey,
We are experiencing a strange error problem when doing 'make install' with automake 1.11. The error is:
test -z "/tmp/lib/eina/mp/" || /bin/mkdir -p "/tmp/lib/eina/mp/" /bin/sh ../../../../libtool --mode=install /usr/bin/install -c eina_chained_mempool.la '/tmp/lib/eina/mp/' libtool: install: error: cannot install `eina_chained_mempool.la' to a directory not ending in /tmp/lib/eina/mp/ If we use automake 1.10, there is not problem. The Makefile.am file is : MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = \ -I. \ -I$(top_srcdir)/src/include \ -I$(top_builddir)/src/include \ @EINA_CFLAGS@ @EFL_PTHREAD_CFLAGS@ if !EINA_STATIC_BUILD_CHAINED_POOL controllerdir = $(libdir)/eina/mp/ controller_LTLIBRARIES = eina_chained_mempool.la eina_chained_mempool_la_SOURCES = \ eina_chained_mempool.c eina_chained_mempool_la_LIBADD = $(top_builddir)/src/lib/libeina.la @EINA_LIBS@ @EFL_PTHREAD_LIBS@ eina_chained_mempool_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version eina_chained_mempool_la_LIBTOOLFLAGS = --tag=disable-static endif clean-local: rm -rf *.gcno Does someone see why the installation is failing only with automake 1.11 ? thank you Vincent Torri