autotools: extra dist subdirs must be filled with all directory.

It is important to remember to also include the one we don't build.
This commit is contained in:
Cedric BAIL 2014-09-09 12:27:51 +02:00
parent 58e241b01b
commit 48ee3ed15f
1 changed files with 5 additions and 3 deletions

View File

@ -115,17 +115,19 @@ if HAVE_ELUA
EXAMPLES_SUBDIRS += examples/elua
endif
if HAVE_CXX11
EXAMPLES_SUBDIRS += \
EXAMPLES_CXX = \
examples/eina_cxx \
examples/eolian_cxx
if HAVE_CXX11
EXAMPLES_SUBDIRS += $(EXAMPLES_CXX)
endif
if ALWAYS_BUILD_EXAMPLES
SUBDIRS += . $(EXAMPLES_SUBDIRS)
endif
DIST_SUBDIRS += $(EXAMPLES_SUBDIRS)
DIST_SUBDIRS += $(EXAMPLES_SUBDIRS) $(EXAMPLES_CXX)
examples: all-am
@for d in $(EXAMPLES_SUBDIRS); do \