Skip to content

Commit

Permalink
Merge pull request #72 from mROS-base/python3
Browse files Browse the repository at this point in the history
replace `python` to `python3` (fix #70)
  • Loading branch information
takasehideki authored Oct 4, 2022
2 parents 171873b + e35d47d commit c0fb5ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workspace/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ usage:
endif

all: clean
@python $(TEMPLATESGEN_FILE) $(APPNAME);
@python3 $(TEMPLATESGEN_FILE) $(APPNAME)
@cd $(BUILDSPACE) && make -j4 -f Makefile.common app=${APPNAME}
@cp $(BUILDSPACE)/asp.bin . && cp $(BUILDSPACE)/asp.elf .
@echo "Build complete successfully"
Expand All @@ -42,7 +42,7 @@ clean:

gen-msg:
@if [ -f custom_msgs/$(MSGFILE) ]; then \
python -B $(HEADERGEN_FILE) $(MSGFILE); \
python3 -B $(HEADERGEN_FILE) $(MSGFILE); \
echo "header file for custom message was generated from ${MSGFILE}"; \
else \
echo "error in msg file: ${MSGFILE} does not exist"; \
Expand Down

0 comments on commit c0fb5ad

Please sign in to comment.