mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Merge pull request #578 from evandroforks/fix_makefile_comments
Fixed Makefile comments showing up on the console
This commit is contained in:
commit
c35a25790b
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -13,7 +13,7 @@ ifndef OS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq (${OS},Windows_NT)
|
ifeq (${OS},Windows_NT)
|
||||||
# Windows terminal is confusing it with its `cmd` builtin `rename` command
|
# Windows terminal is confusing it with its `cmd` builtin `rename` command
|
||||||
ifndef RENAME_BIN
|
ifndef RENAME_BIN
|
||||||
RENAME_BIN := perl scripts/rename
|
RENAME_BIN := perl scripts/rename
|
||||||
endif
|
endif
|
||||||
|
@ -60,8 +60,8 @@ all: run
|
||||||
# - modern pip required for wheel
|
# - modern pip required for wheel
|
||||||
# - add qt if missing
|
# - add qt if missing
|
||||||
pyenv:
|
pyenv:
|
||||||
# https://github.com/PyO3/maturin/issues/283
|
# https://github.com/PyO3/maturin/issues/283
|
||||||
# Expected `python` to be a python interpreter inside a virtualenv
|
# Expected `python` to be a python interpreter inside a virtualenv
|
||||||
set -eu -o pipefail ${SHELLFLAGS}; \
|
set -eu -o pipefail ${SHELLFLAGS}; \
|
||||||
"${PYTHON_BIN}" -m pip install virtualenv; \
|
"${PYTHON_BIN}" -m pip install virtualenv; \
|
||||||
"${PYTHON_BIN}" -m venv pyenv; \
|
"${PYTHON_BIN}" -m venv pyenv; \
|
||||||
|
|
Loading…
Reference in a new issue