cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=58bdac7977af96f88469c091856921aa2645b945
commit 58bdac7977af96f88469c091856921aa2645b945 Author: Savio Sena <[email protected]> Date: Sat May 24 02:27:47 2014 +0200 autotools: fix Eolian-Cxx installation. Summary: grammar/* is now installed to the correct destination. Reviewers: tasn, cedric CC: JackDanielZ, felipealmeida, smohanty, cedric Differential Revision: https://phab.enlightenment.org/D895 Signed-off-by: Cedric Bail <[email protected]> --- src/Makefile_Eolian_Cxx.am | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am index 165b836..505330a 100644 --- a/src/Makefile_Eolian_Cxx.am +++ b/src/Makefile_Eolian_Cxx.am @@ -2,14 +2,17 @@ ### Library installed_eoliancxxmainheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ -dist_installed_eoliancxxmainheaders_DATA = \ +nodist_installed_eoliancxxmainheaders_DATA = \ lib/eolian_cxx/Eolian_Cxx.hh installed_eoliancxxheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ -dist_installed_eoliancxxheaders_DATA = \ +nodist_installed_eoliancxxheaders_DATA = \ lib/eolian_cxx/eo_generate.hh \ lib/eolian_cxx/eo_types.hh \ -lib/eolian_cxx/eo_validate.hh \ +lib/eolian_cxx/eo_validate.hh + +installed_eoliancxxgrammarheadersdir = $(includedir)/eolian-cxx-@VMAJ@/grammar/ +nodist_installed_eoliancxxgrammarheaders_DATA = \ lib/eolian_cxx/grammar/comment.hh \ lib/eolian_cxx/grammar/eo_class_constructors_generator.hh \ lib/eolian_cxx/grammar/eo_class_events.generator.hh \ --
