1 dunno if it just me, but I had to add PREFIX a few places to get 'perl INSTALL_BASE=$HOME' to work
4 From a1e02fbdaba3725730418a837b506e713904ada5 Mon Sep 17 00:00:00 2001
5 From: David Bremner <bremner@pivot.cs.unb.ca>
6 Date: Fri, 29 Aug 2008 15:18:24 -0300
7 Subject: [PATCH] add missing $(PREFIX) to install path
10 Makefile.PL | 6 +++---
11 1 files changed, 3 insertions(+), 3 deletions(-)
13 diff --git a/Makefile.PL b/Makefile.PL
14 index 979483c..1f27394 100755
17 @@ -50,9 +50,9 @@ extra_clean:
21 - install -d $(DESTDIR)/etc/ikiwiki
22 - install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
23 - install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
24 + install -d $(DESTDIR)$(PREFIX)/etc/ikiwiki
25 + install -m 0644 wikilist $(DESTDIR)$(PREFIX)/etc/ikiwiki
26 + install -m 0644 auto.setup $(DESTDIR)$(PREFIX)/etc/ikiwiki
28 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
29 for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \