stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=733c8efa4ae90552c0b0994c8b1dcb3479997946

commit 733c8efa4ae90552c0b0994c8b1dcb3479997946
Author: Stefan Schmidt <s.schm...@samsung.com>
Date:   Thu May 7 09:51:58 2015 +0200

    build: Do not show mkdir calls in silent mode
    
    Keep this noise out of the build ouput. Still visible in verbose mode.
---
 src/Makefile_Edje.am    | 5 +++--
 src/Makefile_Emotion.am | 5 +++--
 src/Makefile_Ethumb.am  | 5 +++--
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am
index adde801..b1acf0e 100644
--- a/src/Makefile_Edje.am
+++ b/src/Makefile_Edje.am
@@ -275,8 +275,9 @@ tests_edje_edje_suite_LDADD = @CHECK_LIBS@  
$(USE_EDJE_BIN_LIBS)
 tests_edje_edje_suite_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@
 
 tests/edje/data/%.edj: tests/edje/data/%.edc bin/edje/edje_cc${EXEEXT}
-       $(MKDIR_P) tests/edje/data
-       $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) -id $(srcdir)/tests/edje/data $< 
$@
+       $(AM_V_EDJ) \
+       $(MKDIR_P) tests/edje/data; \
+       $(EDJE_CC) $(EDJE_CC_FLAGS) -id $(srcdir)/tests/edje/data $< $@
 
 EDJE_DATA_FILES = tests/edje/data/test_layout.edc \
                   tests/edje/data/complex_layout.edc
diff --git a/src/Makefile_Emotion.am b/src/Makefile_Emotion.am
index f3c7352..0390512 100644
--- a/src/Makefile_Emotion.am
+++ b/src/Makefile_Emotion.am
@@ -244,8 +244,9 @@ tests_emotion_emotion_test_LDADD = @USE_EDJE_LIBS@ 
@USE_EMOTION_LIBS@
 tests_emotion_emotion_test_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ 
@USE_EMOTION_INTERNAL_LIBS@
 
 tests/emotion/data/theme.edj: tests/emotion/data/theme.edc 
bin/edje/edje_cc${EXEEXT}
-       $(MKDIR_P) tests/emotion/data
-       $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) -id $(srcdir)/tests/emotion/data 
$< $@
+       $(AM_V_EDJ) \
+       $(MKDIR_P) tests/emotion/data; \
+       $(EDJE_CC) $(EDJE_CC_FLAGS) -id $(srcdir)/tests/emotion/data $< $@
 
 emotiondatafilesdir = $(datadir)/emotion/data
 emotiondatafiles_DATA = tests/emotion/data/theme.edj
diff --git a/src/Makefile_Ethumb.am b/src/Makefile_Ethumb.am
index baa43d8..2f4b7de 100644
--- a/src/Makefile_Ethumb.am
+++ b/src/Makefile_Ethumb.am
@@ -55,8 +55,9 @@ modules_ethumb_emotion_module_la_LDFLAGS = -module 
@EFL_LTMODULE_FLAGS@
 modules_ethumb_emotion_module_la_LIBTOOLFLAGS = --tag=disable-static
 
 modules/ethumb/emotion/template.edj: modules/ethumb/emotion/template.edc 
modules/ethumb/emotion/placeholder.png bin/edje/edje_cc${EXEEXT}
-       $(MKDIR_P) modules/ethumb/emotion
-       $(AM_V_EDJ)$(EDJE_CC) $(EDJE_CC_FLAGS) -id 
$(srcdir)/modules/ethumb/emotion $< $@
+       $(AM_V_EDJ) \
+       $(MKDIR_P) modules/ethumb/emotion; \
+       $(EDJE_CC) $(EDJE_CC_FLAGS) -id $(srcdir)/modules/ethumb/emotion $< $@
 
 ethumbmoduleemotion_DATA = modules/ethumb/emotion/template.edj
 CLEANFILES += modules/ethumb/emotion/template.edj

-- 


Reply via email to