felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=30fa700599f066ca919fd731997da28934384133
commit 30fa700599f066ca919fd731997da28934384133 Author: Felipe Magno de Almeida <[email protected]> Date: Tue Sep 30 12:46:40 2014 -0300 [cxx] Fixed distclean when the C++ binding is enabled The C++ examples were being added twice. So the make distclean was tried after the Makefile was already removed. Removes the EXAMPLES_SUBDIRS redundancy for the C++ examples. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index a4e211d..27df98f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -127,7 +127,7 @@ if ALWAYS_BUILD_EXAMPLES SUBDIRS += . $(EXAMPLES_SUBDIRS) endif -DIST_SUBDIRS += $(EXAMPLES_SUBDIRS) $(EXAMPLES_CXX) +DIST_SUBDIRS += $(EXAMPLES_SUBDIRS) examples: all-am @for d in $(EXAMPLES_SUBDIRS); do \ --
