diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-01-26 21:30:23 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-01-26 22:20:06 +0100 |
commit | 20773c2bb04631d9bfd60167ed091752f0deecee (patch) | |
tree | 6eb9b6e5f79165d0ad7eb70a559d0c2c537db123 /crashrep | |
parent | a64e6f49f1b6938845f7a765da24946a0f0fd749 (diff) |
crashrep: fix conditionals: it used to be built in non-pro too
Change-Id: Icf3901024aed39f3b8e280a4fed8244a2b83e80e
Diffstat (limited to 'crashrep')
-rw-r--r-- | crashrep/Module_crashrep.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crashrep/Module_crashrep.mk b/crashrep/Module_crashrep.mk index 6b44ea0cc53c..334dab0444e9 100644 --- a/crashrep/Module_crashrep.mk +++ b/crashrep/Module_crashrep.mk @@ -14,14 +14,14 @@ ifeq ($(ENABLE_CRASHDUMP),TRUE) ifeq ($(OS),WNT) $(eval $(call gb_Module_add_targets,crashrep,\ CustomTarget_crashrep_res \ - Executable_crashrep \ WinResTarget_crashrep \ )) -else ifneq ($(PRODUCT),) +endif # WNT + $(eval $(call gb_Module_add_targets,crashrep,\ Executable_crashrep \ )) -endif -endif + +endif # ENABLE_CRASHDUMP # vim: set noet sw=4 ts=4: |