Skip to content

Commit

Permalink
fix inverted logic
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Abraham <[email protected]>
  • Loading branch information
jabraham17 committed Jan 6, 2025
1 parent becb3e9 commit 5b88759
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion compiler/make/Makefile.compiler.head
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ifeq ($(ASSERTS),1)
DYNO_ENABLE_ASSERTIONS = 1
endif

ifneq (, $(call isTrue, $(CHPL_DEVELOPER)))
ifeq (, $(call isTrue, $(CHPL_DEVELOPER)))
OPTIMIZE=1
else
DEBUG=1
Expand Down
2 changes: 1 addition & 1 deletion modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ endif

# Generate tags only if $TAGS turned on explicitly, or if $CHPL_DEVELOPER is on
CHPL_DEVELOPER ?= 0
ifeq (, $(call isTrue, $(CHPL_DEVELOPER)))
ifneq (, $(call isTrue, $(CHPL_DEVELOPER)))
TAGS=1
endif

Expand Down
2 changes: 1 addition & 1 deletion runtime/etc/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ printmultilocalelibdeps:

checkRtLibDir:
ifeq ($(wildcard $(CHPL_RT_LIB_DIR)),)
ifeq (, $(call isTrue, $(CHPL_DEVELOPER)))
ifneq (, $(call isTrue, $(CHPL_DEVELOPER)))
$(warning Expected runtime library in $(CHPL_RT_LIB_DIR))
endif
ifeq ($(CHPL_MODULE_HOME),$(CHPL_HOME))
Expand Down
2 changes: 1 addition & 1 deletion runtime/make/Makefile.runtime.head
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#
DEPEND=1
CHPL_DEVELOPER ?= 0
ifeq (, $(call isTrue, $(CHPL_DEVELOPER)))
ifneq (, $(call isTrue, $(CHPL_DEVELOPER)))
DEBUG=1
WARNINGS=1
TAGS=1
Expand Down
2 changes: 1 addition & 1 deletion third-party/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export CHPL_MAKE_HOME=$(shell pwd)/..
endif
include $(CHPL_MAKE_HOME)/make/Makefile.base

ifeq (, $(call isTrue, $(CHPL_DEVELOPER)))
ifneq (, $(call isTrue, $(CHPL_DEVELOPER)))
DEBUG=1
export DEBUG
WARNINGS=1
Expand Down

0 comments on commit 5b88759

Please sign in to comment.