Skip to content

Commit 2ef7965

Browse files
committed
Update file search to account for project tools directory
1 parent 02b049a commit 2ef7965

31 files changed

Lines changed: 32 additions & 2 deletions

tools/make/lib/ls/benchmarks.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_c.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_C_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_cpp.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_CPP_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_fortran.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_FORTRAN_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_julia.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_JULIA_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_python.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_PYTHON_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/benchmarks_r.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_R_BENCHMARKS_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*"

tools/make/lib/ls/examples.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_EXAMPLES_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*" \

tools/make/lib/ls/examples_c.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_C_EXAMPLES_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*" \

tools/make/lib/ls/examples_cpp.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ FIND_CPP_EXAMPLES_FLAGS ?= \
2121
-not -path "$(ROOT_DIR)/.*" \
2222
-not -path "$(NODE_MODULES)/*" \
2323
-not -path "$(TOOLS_DIR)/*" \
24+
-not -path "$(TOOLS_PKGS_DIR)/*" \
2425
-not -path "$(BUILD_DIR)/*" \
2526
-not -path "$(DEPS_DIR)/*" \
2627
-not -path "$(REPORTS_DIR)/*" \

0 commit comments

Comments
 (0)