diff options
author | Savio Sena <savio.sena@acm.org> | 2014-05-26 15:47:44 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-05-26 15:47:44 +0900 |
commit | 6bfa07cb2f209e914129e6e26d7f6edd2d42498e (patch) | |
tree | b8968f715537a6fca62d243feb323733ab7467b4 /src/Makefile_Eolian_Cxx.am | |
parent | 58bdac7977af96f88469c091856921aa2645b945 (diff) |
autotools: Fix eolianc-xx header distribution.
Summary:
Sorry, last patch added the headers to the correct relative
location but replaced dist with nodist which is incorrect. nodist is
for generated headers only.
Reviewers: cedric, raster
Reviewed By: raster
CC: felipealmeida, smohanty, cedric
Differential Revision: https://phab.enlightenment.org/D898
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Eolian_Cxx.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am index 505330a076..82de3ff303 100644 --- a/src/Makefile_Eolian_Cxx.am +++ b/src/Makefile_Eolian_Cxx.am | |||
@@ -2,17 +2,17 @@ | |||
2 | ### Library | 2 | ### Library |
3 | 3 | ||
4 | installed_eoliancxxmainheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ | 4 | installed_eoliancxxmainheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ |
5 | nodist_installed_eoliancxxmainheaders_DATA = \ | 5 | dist_installed_eoliancxxmainheaders_DATA = \ |
6 | lib/eolian_cxx/Eolian_Cxx.hh | 6 | lib/eolian_cxx/Eolian_Cxx.hh |
7 | 7 | ||
8 | installed_eoliancxxheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ | 8 | installed_eoliancxxheadersdir = $(includedir)/eolian-cxx-@VMAJ@/ |
9 | nodist_installed_eoliancxxheaders_DATA = \ | 9 | dist_installed_eoliancxxheaders_DATA = \ |
10 | lib/eolian_cxx/eo_generate.hh \ | 10 | lib/eolian_cxx/eo_generate.hh \ |
11 | lib/eolian_cxx/eo_types.hh \ | 11 | lib/eolian_cxx/eo_types.hh \ |
12 | lib/eolian_cxx/eo_validate.hh | 12 | lib/eolian_cxx/eo_validate.hh |
13 | 13 | ||
14 | installed_eoliancxxgrammarheadersdir = $(includedir)/eolian-cxx-@VMAJ@/grammar/ | 14 | installed_eoliancxxgrammarheadersdir = $(includedir)/eolian-cxx-@VMAJ@/grammar/ |
15 | nodist_installed_eoliancxxgrammarheaders_DATA = \ | 15 | dist_installed_eoliancxxgrammarheaders_DATA = \ |
16 | lib/eolian_cxx/grammar/comment.hh \ | 16 | lib/eolian_cxx/grammar/comment.hh \ |
17 | lib/eolian_cxx/grammar/eo_class_constructors_generator.hh \ | 17 | lib/eolian_cxx/grammar/eo_class_constructors_generator.hh \ |
18 | lib/eolian_cxx/grammar/eo_class_events.generator.hh \ | 18 | lib/eolian_cxx/grammar/eo_class_events.generator.hh \ |
@@ -39,6 +39,7 @@ bin_eolian_cxx_eolian_cxx_SOURCES = \ | |||
39 | bin/eolian_cxx/eolian_cxx.cc | 39 | bin/eolian_cxx/eolian_cxx.cc |
40 | 40 | ||
41 | bin_eolian_cxx_eolian_cxx_CXXFLAGS = -I$(top_builddir)/src/lib/efl \ | 41 | bin_eolian_cxx_eolian_cxx_CXXFLAGS = -I$(top_builddir)/src/lib/efl \ |
42 | -I$(top_srcdir)/src/lib/eolian_cxx/ \ | ||
42 | @CHECK_CFLAGS@ @EINA_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CFLAGS@ \ | 43 | @CHECK_CFLAGS@ @EINA_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CFLAGS@ \ |
43 | @EOLIAN_CXX_CFLAGS@ @EOLIAN_CFLAGS@ | 44 | @EOLIAN_CXX_CFLAGS@ @EOLIAN_CFLAGS@ |
44 | 45 | ||