mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
Makefile: attempt to workaround problem caused by workaround for backslashes glomming onto the following double-quote. ...
This commit is contained in:
parent
f0b427485b
commit
1e8fc6cffd
3
Makefile
3
Makefile
@ -18,6 +18,7 @@ default: build
|
||||
|
||||
PYTHON=python
|
||||
PATHSEP=$(shell python -c 'import os ; print os.pathsep')
|
||||
OSSEP=$(shell python -c 'import os ; print os.sep')
|
||||
TRIALPATH=$(shell which trial.py 2>/dev/null)
|
||||
ifeq ($(TRIALPATH),)
|
||||
TRIALPATH=$(shell which trial 2>/dev/null)
|
||||
@ -69,7 +70,7 @@ EGGSPATH = $(shell $(PYTHON) misc/find-dep-eggs.py)
|
||||
show-eggspath:
|
||||
@echo $(EGGSPATH)
|
||||
|
||||
PP=PYTHONPATH="$(SRCPATH)$(PATHSEP)$(EGGSPATH)$(PATHSEP)$(PYTHONPATH)."
|
||||
PP=PYTHONPATH="$(SRCPATH)$(PATHSEP)$(EGGSPATH)$(PATHSEP)$(PYTHONPATH)$(OSSEP)."
|
||||
|
||||
.PHONY: make-version build
|
||||
make-version:
|
||||
|
Loading…
Reference in New Issue
Block a user