Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion make/compiler_flags
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Find files subroutine for different operating system
# This is recursive version of the makefiles wildcard function
findfiles = $(foreach d,$(wildcard $(addsuffix *,$(1))),$(call findfiles,$(d)/,$(2)) $(wildcard $(d)/$(2)))
findfiles = $(subst \n,,$(foreach d,$(wildcard $(addsuffix *,$(1))),$(call findfiles,$(d)/,$(2)) $(wildcard $(d)/$(2))))

ifneq ($(OS),Windows_NT)
GENERATE_DISTRIBUTION_TESTS=true
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ clean-all: clean clean-doxygen clean-deps clean-libraries

.PHONY: test-math-dependencies
test-math-dependencies:
@python runChecks.py
@./runChecks.py
##
# Debug target that allows you to print a variable
##
Expand Down