Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit c939968

Browse files
authored
Fix nmodl default flags message (#401)
- nmodl default flag message was always printing the ispc one regardless of @CORENRN_ENABLE_ISPC@ status
1 parent 483f9d9 commit c939968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extra/nrnivmodl_core_makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ C_GREEN := \033[32m
144144
# Default nmodl flags. Override if NMODL_RUNTIME_FLAGS is not empty
145145
NMODL_FLAGS_ISPC = $(if $(NMODL_RUNTIME_FLAGS),$(NMODL_RUNTIME_FLAGS),@nmodl_arguments_ispc@)
146146
NMODL_FLAGS_C = $(if $(NMODL_RUNTIME_FLAGS),$(NMODL_RUNTIME_FLAGS),@nmodl_arguments_c@)
147-
$(info Default nmodl flags: $(if (@CORENRN_ENABLE_ISPC@ == ON), @nmodl_arguments_ispc@, @nmodl_arguments_c@))
147+
$(info Default nmodl flags: $(if $(@CORENRN_ENABLE_ISPC@ == ON), @nmodl_arguments_ispc@, @nmodl_arguments_c@))
148148
ifneq ($(NMODL_RUNTIME_FLAGS),)
149149
$(warning Runtime nmodl flags (they replace the default ones): $(NMODL_RUNTIME_FLAGS))
150150
endif

0 commit comments

Comments
 (0)