From: Zooko O'Whielacronx Date: Thu, 26 Apr 2007 22:40:16 +0000 (-0700) Subject: use zfec's setuptools installer in the nice controllable way X-Git-Tag: allmydata-tahoe_v0.1.1-1-UNSTABLE~38 X-Git-Url: https://git.rkrishnan.org/vdrive/%22file:/frontends/quickstart.html?a=commitdiff_plain;h=6dcf85800006bcc069444286a42dff0ee0c1e89f;p=tahoe-lafs%2Ftahoe-lafs.git use zfec's setuptools installer in the nice controllable way --- diff --git a/GNUmakefile b/GNUmakefile index 426c3caf..8207c021 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -48,7 +48,7 @@ build: build-zfec build-Crypto $(PYTHON) setup.py $(EXTRA_SETUP_ARGS) install --install-lib="$(INSTDIR)" --install-scripts="$(INSTDIR)/scripts" build-zfec: - cd src/zfec && $(PYTHON) ./setup.py $(EXTRA_SETUP_ARGS) install --install-lib="$(INSTDIR)" --install-scripts="$(INSTDIR)/scripts" + cd src/zfec && $(PYTHON) ./setup.py $(EXTRA_SETUP_ARGS) install --single-version-externally-managed --root="$(INSTDIR)" --install-lib="." --install-scripts="$(INSTDIR)/scripts" clean-zfec: -cd src/zfec && python ./setup.py clean --all