autotools: Fix Makefile_Eo.am.

Autotools was deploying .eo.{c,h} instead of the .eo files to
${E_PREFIX}/share/eolian/include/eo-1. This patch fix Elementary build
and whoever else was using Eolian and Eo.Base.
This commit is contained in:
Savio S. Machado 2014-10-04 04:40:15 +08:00
parent 1a6013e959
commit ba131c2dea
1 changed files with 5 additions and 5 deletions

View File

@ -2,10 +2,8 @@
### Library
eo_eolian_files = \
lib/eo/eo_base.eo.c \
lib/eo/eo_base.eo.h \
lib/eo/eo_abstract_class.eo.c \
lib/eo/eo_abstract_class.eo.h
lib/eo/eo_base.eo \
lib/eo/eo_abstract_class.eo
eo_eolian_c = $(eo_eolian_files:%.eo=%.eo.c)
eo_eolian_h = $(eo_eolian_files:%.eo=%.eo.h)
@ -32,7 +30,9 @@ lib/eo/eo_ptr_indirection.c \
lib/eo/eo_ptr_indirection.h \
lib/eo/eo_base_class.c \
lib/eo/eo_class_class.c \
lib/eo/eo_private.h
lib/eo/eo_private.h \
${eo_eolian_c} \
${eo_eolian_h}
lib_eo_libeo_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EO_CFLAGS@
lib_eo_libeo_la_LIBADD = @EO_LIBS@