diff options
author | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-10-20 12:17:54 +0300 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-10-20 12:20:15 +0300 |
commit | 4b47eff6e3252ff60e1c889d305ddebdee7f16cf (patch) | |
tree | 1c530a73e35006dc951228216c52fe0def8937ce | |
parent | a0b305d853ed310a9078954a595737eb54a28641 (diff) | |
download | efl-4b47eff6e3252ff60e1c889d305ddebdee7f16cf.tar.gz |
Eolian: fix generated Eo files installation.
make distcheck was failing on trying to write to a read only file.
-rw-r--r-- | src/Makefile_Eo.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile_Eo.am b/src/Makefile_Eo.am index 1e36118caa..306c8c3623 100644 --- a/src/Makefile_Eo.am +++ b/src/Makefile_Eo.am @@ -30,9 +30,7 @@ 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 \ -${eo_eolian_c} \ -${eo_eolian_h} +lib/eo/eo_private.h lib_eo_libeo_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EO_CFLAGS@ lib_eo_libeo_la_LIBADD = @EO_LIBS@ |