From 30fa700599f066ca919fd731997da28934384133 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Tue, 30 Sep 2014 12:46:40 -0300 Subject: [PATCH] [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 a4e211db29..27df98fe44 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 \