From 011c38edd6cc983d5937355d3705c2062ff5b172 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 15 Jun 2018 12:27:01 -0500 Subject: [PATCH] build: enable namespace verification for default theme Summary: this will trigger a build failure if someone modifies the theme in such a way that namespacing is not used correctly, saving some time when reviewing larger patches which have many theme changes ref T6911 Depends on D6036 Reviewers: cedric Reviewed By: cedric Subscribers: #committers Tags: #efl Maniphest Tasks: T6911 Differential Revision: https://phab.enlightenment.org/D6042 --- data/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/Makefile.am b/data/Makefile.am index 999d972..572b7f9 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -152,12 +152,12 @@ if BUILD_TIZEN_EFL elementary/themes/default.edj: elementary/themes/default.edc $(elementary_themes_files) $(efl_ui_themes_files) $(top_builddir)/src/bin/edje/edje_cc${EXEEXT} $(AM_V_EDJ) \ $(MKDIR_P) elementary/themes/; \ - $(EDJE_CC) $(EDJE_CC_FLAGS) $(EDJE_CC_ELM_FLAGS) $< $@ + $(EDJE_CC) $(EDJE_CC_FLAGS) $(EDJE_CC_ELM_FLAGS) -N $< $@ else elementary/themes/default.edj: elementary/themes/default.edc $(elementary_themes_files) $(efl_ui_themes_files) $(AM_V_EDJ) \ $(MKDIR_P) elementary/themes/; \ - $(EDJE_CC) $(EDJE_CC_FLAGS) $(EDJE_CC_ELM_FLAGS) $< $@ + $(EDJE_CC) $(EDJE_CC_FLAGS) $(EDJE_CC_ELM_FLAGS) -N $< $@ endif ## -- 2.7.4