Makefile: attempt to workaround problem caused by workaround for backslashes glomming onto the following double-quote. ...

This commit is contained in:
Zooko O'Whielacronx 2007-09-20 17:02:54 -07:00
parent f0b427485b
commit 1e8fc6cffd

View File

@ -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: