aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-30 21:38:50 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-30 21:38:50 +0000
commitdf16a6676b846428fb60a0552077de4f8f145388 (patch)
treee2da6c9c65dab7204caa66dfd9795259a7f42402
parentd64ee88ba85e6869a02952ce9dd5288307e3ee34 (diff)
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.4@134649 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 7a0b7aa50..a847eaf52 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 132704 .
+# From configure.ac Revision: 134536 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for asterisk 1.4.
#
@@ -3961,7 +3961,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
diff --git a/configure.ac b/configure.ac
index 21719e34f..e5f6630c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,7 +28,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