summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2014-01-23 12:54:30 +0100
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2014-01-23 12:55:09 +0100
commit1c3f994c515e4f227e0b052d18899a897c042013 (patch)
tree9018b0b6ce0fe08942bfc1d5fa27601b50522439
parentb5e988ffc121147c052cf9d6992afc35db3df49b (diff)
smoketest cant work without extensions
Change-Id: I58af85205cce89c2eff3db24a477171ce39d47dc
-rw-r--r--smoketest/Module_smoketest.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/smoketest/Module_smoketest.mk b/smoketest/Module_smoketest.mk
index 798b7870f1e7..7195fdaac723 100644
--- a/smoketest/Module_smoketest.mk
+++ b/smoketest/Module_smoketest.mk
@@ -18,11 +18,13 @@ $(eval $(call gb_Module_add_targets,smoketest,\
))
ifneq ($(ENABLE_JAVA),)
+ifneq ($(filter EXTENSIONS,$(BUILD_TYPE)),)
$(eval $(call gb_Module_add_targets,smoketest,\
Extension_TestExtension \
Jar_TestExtension \
))
endif
+endif
ifeq ($(OS),LINUX)
$(eval $(call gb_Module_add_check_targets,smoketest,\
@@ -31,10 +33,12 @@ $(eval $(call gb_Module_add_check_targets,smoketest,\
endif
ifneq (MACOSX/TRUE,$(OS)/$(ENABLE_MACOSX_SANDBOX))
+ifneq ($(filter EXTENSIONS,$(BUILD_TYPE)),)
$(eval $(call gb_Module_add_subsequentcheck_targets,smoketest,\
CppunitTest_smoketest \
))
endif
+endif
endif