Mercurial > hg
changeset 20614:1bc68ff4e0a2
setup: specify --prefix="" for install-home-bin to avoid badness with defaults
Sometimes (I'm not sure when) setup.py gets a default value for
--prefix, which breaks --home. This fixes that for me.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 03 Feb 2014 02:09:46 -0500 |
parents | 10433163bf57 |
children | bedb9f1a6b4e |
files | Makefile |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Sat Nov 16 08:57:08 2013 -0800 +++ b/Makefile Mon Feb 03 02:09:46 2014 -0500 @@ -71,7 +71,7 @@ install-home: install-home-bin install-home-doc install-home-bin: build - $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --force + $(PYTHON) setup.py $(PURE) install --home="$(HOME)" --prefix="" --force install-home-doc: doc cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install