From edca53204c2461fd451bf3a8bbb18e59c6260523 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 24 Jul 2008 21:25:08 +0200 Subject: [PATCH] Fixed default install location MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Daniel White Originally broken by addition of Debian package support. The default installation direction is actually /usr at present despite what 'INSTALL' says. The 'debian/rules' makefile specifies the prefix as /usr so doesn't seem to depend on this. I've tested the resulting debian package and everything is still installed correctly under /usr. Signed-off-by: Daniel White Signed-off-by: Karl Hasselström --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 1eb8e9b..4359033 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [install] -prefix: /usr +prefix: ~ -- [mdw]