aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-30 21:41:23 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-30 21:41:23 +0000
commitabe4d4eff47990d2debcf442dcdbd153fad39e4d (patch)
tree4c9c7ed3149d7fe8b69a4555b27d6c141dd1d518 /configure.ac
parent5f9b4f15bc96837386fdac7c0ae04d579e6a3e3e (diff)
Merged revisions 134650 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r134650 | tilghman | 2008-07-30 16:40:08 -0500 (Wed, 30 Jul 2008) | 12 lines Merged revisions 134649 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r134649 | tilghman | 2008-07-30 16:38:50 -0500 (Wed, 30 Jul 2008) | 4 lines Qwell pointed out, via IRC, that the previous fix only worked when explicitly set. When nothing is set, and the option is implied, it breaks, because configure sets the prefix to 'NONE'. Fixing. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@134651 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f04afc6f6..33b40a2af 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,7 +35,7 @@ case "${host_os}" in
*)
ac_default_prefix=/usr
- if test ${prefix} = '/usr'; then
+ if test ${prefix} = '/usr' || test ${prefix} = 'NONE'; then
if test ${sysconfdir} = '${prefix}/etc'; then
sysconfdir=/etc
fi