From 29a8a0c94fb61b2a907afd9a9684cff058b9498a Mon Sep 17 00:00:00 2001 Message-Id: <29a8a0c94fb61b2a907afd9a9684cff058b9498a.1747444690.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 26 Jul 2008 02:37:04 +1000 Subject: [PATCH] Fix Makefile to correctly pass prefix option Organization: Straylight/Edgeware From: Daniel White Was using PREFIX in top level Makefile whereas Documentation/Makefile was using prefix. Git's use prefix, so seems the most reasonable choice. Signed-off-by: Daniel White --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5c002a..9885f62 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PREFIX ?= $(HOME) +prefix ?= $(HOME) DESTDIR ?= / PYTHON ?= python @@ -8,7 +8,7 @@ all: $(PYTHON) setup.py build install: - $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force + $(PYTHON) setup.py install --prefix=$(prefix) --root=$(DESTDIR) --force doc: cd Documentation && $(MAKE) all -- [mdw]