aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/install_into_home_dir_fails.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-29 15:49:52 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-29 15:49:52 -0400
commitef3d080a9ace3f8e0c985b737ededf6d6f1285ad (patch)
tree316b248c4b34c033adc091a090d511b27cbf88ec /doc/bugs/install_into_home_dir_fails.mdwn
parent01054da0f723f3abbd81553b654705d0bc38d28b (diff)
downloadikiwiki-ef3d080a9ace3f8e0c985b737ededf6d6f1285ad.tar
ikiwiki-ef3d080a9ace3f8e0c985b737ededf6d6f1285ad.tar.gz
response
Diffstat (limited to 'doc/bugs/install_into_home_dir_fails.mdwn')
-rw-r--r--doc/bugs/install_into_home_dir_fails.mdwn23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/bugs/install_into_home_dir_fails.mdwn b/doc/bugs/install_into_home_dir_fails.mdwn
index aebd57ca0..ad19f3a69 100644
--- a/doc/bugs/install_into_home_dir_fails.mdwn
+++ b/doc/bugs/install_into_home_dir_fails.mdwn
@@ -1,5 +1,28 @@
dunno if it just me, but I had to add PREFIX a few places to get 'perl INSTALL_BASE=$HOME' to work
+> That will cause the files to be installed into a place that ikiwiki
+> doesn't look for them. It will also cause them to be installed into
+> /usr/etc by default, where ikiwiki also won't find them.
+>
+> Thomas Keller also ran into some sort of problem with the MacPort
+> involving the installation into /etc. From that discussion:
+>
+> Both ikiwiki-update-wikilist and ikiwiki-mass-rebuild hardcode /etc; so
+> do several pages in the doc wiki.
+>
+> The real problem though is that MakeMaker does not have a standard way
+> of specifying where /etc files go. In Debian we want everything to go
+> into /usr, rather than the default /usr/local, so set PREFIX=/usr -- but
+> we still want config files in /etc, not /usr/etc. The only way I can see
+> around this is to add a nonstandard variable to control the location of
+> /etc, that would override the PREFIX.
+>
+> Which implies that you can't just use "$installdir/etc/" in the /etc
+> hardcoding scripts, and would instead need to record the new variable
+> at build time, like PREFIX is recorded in $installdir.
+>
+> --[[Joey]]
+
<pre>
From a1e02fbdaba3725730418a837b506e713904ada5 Mon Sep 17 00:00:00 2001
From: David Bremner <bremner@pivot.cs.unb.ca>