Skip to content

Commit

Permalink
examples/Makefile: escape backticks in echo command
Browse files Browse the repository at this point in the history
  • Loading branch information
DemesneGH committed Nov 26, 2024
1 parent 2988f96 commit eb1ea70
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/message_passing_interface-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/message_passing_interface-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/serde-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/serde-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tcp_client-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tcp_client-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tls_client-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tls_client-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tls_server-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/tls_server-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/udp_socket-rs/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: host strip
endif
Expand Down
2 changes: 1 addition & 1 deletion examples/udp_socket-rs/ta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OUT_DIR := $(CURDIR)/target/$(TARGET)/release

ifeq ($(STD),)
all:
@echo "Please `export STD=y` then rerun `source environment` to build the STD version"
@echo "Please \`export STD=y\` then rerun \`source environment\` to build the STD version"
else
all: ta strip sign
endif
Expand Down

0 comments on commit eb1ea70

Please sign in to comment.