Skip to content

Commit 0ce8456

Browse files
committed
Add quotes to prevent path expansion
1 parent 3600a18 commit 0ce8456

37 files changed

+97
-97
lines changed

tools/make/lib/benchmark/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ include $(TOOLS_MAKE_LIB_DIR)/benchmark/r.mk
3838
# make benchmark
3939
#
4040
# @example
41-
# make benchmark BENCHMARKS_FILTER=.*/blas/base/dasum/.*
41+
# make benchmark BENCHMARKS_FILTER=".*/blas/base/dasum/.*"
4242
#/
4343
benchmark: benchmark-javascript
4444

@@ -59,7 +59,7 @@ benchmark: benchmark-javascript
5959
# make benchmark-lang
6060
#
6161
# @example
62-
# make benchmark-lang BENCHMARKS_FILTER=.*/blas/base/dasum/.*
62+
# make benchmark-lang BENCHMARKS_FILTER=".*/blas/base/dasum/.*"
6363
#/
6464
benchmark-lang: benchmark-javascript benchmark-julia benchmark-python benchmark-r benchmark-c benchmark-cpp benchmark-fortran
6565

tools/make/lib/benchmark/c.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ compile_c_benchmark_bin := $(TOOLS_DIR)/scripts/compile_c_benchmark
4242
# make benchmark-c
4343
#
4444
# @example
45-
# make benchmark-c BENCHMARKS_FILTER=.*/math/base/special/abs/.*
45+
# make benchmark-c BENCHMARKS_FILTER=".*/math/base/special/abs/.*"
4646
#/
4747
benchmark-c:
4848
$(QUIET) $(FIND_C_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/cpp.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# make benchmark-cpp
3535
#
3636
# @example
37-
# make benchmark-cpp BENCHMARKS_FILTER=.*/math/base/special/beta/.*
37+
# make benchmark-cpp BENCHMARKS_FILTER=".*/math/base/special/beta/.*"
3838
#/
3939
benchmark-cpp:
4040
$(QUIET) $(FIND_CPP_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/fortran.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ compile_fortran_benchmark_bin := $(TOOLS_DIR)/scripts/compile_fortran_benchmark
4040
# make benchmark-fortran
4141
#
4242
# @example
43-
# make benchmark-fortran BENCHMARKS_FILTER=.*/blas/base/daxpy/.*
43+
# make benchmark-fortran BENCHMARKS_FILTER=".*/blas/base/daxpy/.*"
4444
#/
4545
benchmark-fortran:
4646
$(QUIET) $(FIND_FORTRAN_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/javascript.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# make benchmark-javascript
3434
#
3535
# @example
36-
# make benchmark-javascript BENCHMARKS_FILTER=.*/utils/group-by/.*
36+
# make benchmark-javascript BENCHMARKS_FILTER=".*/utils/group-by/.*"
3737
#/
3838
benchmark-javascript: $(NODE_MODULES)
3939
$(QUIET) $(FIND_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/julia.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# make benchmark-julia
3434
#
3535
# @example
36-
# make benchmark-julia BENCHMARKS_FILTER=.*/math/base/special/erf/.*
36+
# make benchmark-julia BENCHMARKS_FILTER=".*/math/base/special/erf/.*"
3737
#/
3838
benchmark-julia:
3939
$(QUIET) $(FIND_JULIA_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/python.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# make benchmark-python
3434
#
3535
# @example
36-
# make benchmark-python BENCHMARKS_FILTER=.*/math/base/special/digamma/.*
36+
# make benchmark-python BENCHMARKS_FILTER=".*/math/base/special/digamma/.*"
3737
#/
3838
benchmark-python:
3939
$(QUIET) $(FIND_PYTHON_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/benchmark/r.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# make benchmark-r
3434
#
3535
# @example
36-
# make benchmark-r BENCHMARKS_FILTER=.*/math/base/special/expm1/.*
36+
# make benchmark-r BENCHMARKS_FILTER=".*/math/base/special/expm1/.*"
3737
#/
3838
benchmark-r:
3939
$(QUIET) $(FIND_R_BENCHMARKS_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

tools/make/lib/examples/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ include $(TOOLS_MAKE_LIB_DIR)/examples/markdown.mk
3636
# make examples
3737
#
3838
# @example
39-
# make examples EXAMPLES_FILTER=.*/blas/base/dasum/.*
39+
# make examples EXAMPLES_FILTER=".*/blas/base/dasum/.*"
4040
#/
4141
examples: examples-javascript
4242

@@ -57,7 +57,7 @@ examples: examples-javascript
5757
# make examples-lang
5858
#
5959
# @example
60-
# make examples-lang EXAMPLES_FILTER=.*/blas/base/dasum/.*
60+
# make examples-lang EXAMPLES_FILTER=".*/blas/base/dasum/.*"
6161
#/
6262
examples-lang: examples-javascript examples-c examples-cpp
6363

tools/make/lib/examples/c.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ compile_c_example_bin := $(TOOLS_DIR)/scripts/compile_c_example
4242
# make examples-c
4343
#
4444
# @example
45-
# make examples-c EXAMPLES_FILTER=.*/math/base/special/abs/.*
45+
# make examples-c EXAMPLES_FILTER=".*/math/base/special/abs/.*"
4646
#/
4747
examples-c:
4848
$(QUIET) $(FIND_C_EXAMPLES_CMD) | grep '^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \

0 commit comments

Comments
 (0)