From 26ea7a56030bdd512cc183cc97ebcbe945127d98 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Tue, 15 Jan 2013 19:19:36 +0000 Subject: [PATCH] fix distcheck. if we're building examples we must build current dir (src) before recursing. SVN revision: 82838 --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index da4a6eb1e3..865cad96ad 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -75,7 +75,7 @@ examples/edje \ examples/emotion \ examples/ethumb_client if ALWAYS_BUILD_EXAMPLES -SUBDIRS += $(EXAMPLES_SUBDIRS) +SUBDIRS += . $(EXAMPLES_SUBDIRS) else DIST_SUBDIRS += $(EXAMPLES_SUBDIRS) endif