Mercurial > public > mercurial-scm > hg-stable
changeset 52729:198fd1bd0d67
makefile: enclose PURE with quotes
author | Pierre Augier <pierre.augier@univ-grenoble-alpes.fr> |
---|---|
date | Thu, 30 Jan 2025 11:06:01 +0100 |
parents | 9e6b36ee2f5c |
children | 801367447ce3 |
files | Makefile |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Mon Jan 27 23:58:11 2025 +0100 +++ b/Makefile Thu Jan 30 11:06:01 2025 +0100 @@ -62,7 +62,7 @@ local: $(PYTHON) -m venv $(VENV_NAME) --clear --upgrade-deps MERCURIAL_SETUP_MAKE_LOCAL=1 $(VENV_NAME)/$(PYBINDIRNAME)/python -m \ - pip install -e . -v --config-settings --global-option=$(PURE) + pip install -e . -v --config-settings --global-option="$(PURE)" env HGRCPATH= $(VENV_NAME)/$(PYBINDIRNAME)/hg version build: @@ -101,7 +101,7 @@ install: install-bin install-doc install-bin: - $(PYTHON) -m pip install --prefix="$(PREFIX)" --force -v --config-settings --global-option=$(PURE) + $(PYTHON) -m pip install --prefix="$(PREFIX)" --force -v --config-settings --global-option="$(PURE)" install-chg: build-chg make -C contrib/chg install PREFIX="$(PREFIX)" @@ -112,7 +112,7 @@ install-home: install-home-bin install-home-doc install-home-bin: - $(PYTHON) -m pip install --user --force -v --config-settings --global-option=$(PURE) + $(PYTHON) -m pip install --user --force -v --config-settings --global-option="$(PURE)" install-home-doc: doc cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install