aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-22 10:30:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-22 10:30:51 +0000
commit078081a36ef139a937b29c55b59df35677e2a5b1 (patch)
tree8c7b4e4ce7df24b3e3046f2e1b7a78f5b6c07096 /configure.ac
parentf8dcb3fd1e84d5d052efa921d880ee64ded1cd9c (diff)
use the AC_PREFIX_DEFAULT macro to set the default prefix instead of setting
the variable directly, so that the configure --help information shows the correct default prefix git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35391 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 23813573d..db5d50fb9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,10 +24,10 @@ AC_REVISION($Revision$)
case "${host}" in
*freebsd*)
- ac_default_prefix=/usr/local
+ AC_PREFIX_DEFAULT(/usr/local)
;;
*)
- ac_default_prefix=/usr
+ AC_PREFIX_DEFAULT(/usr)
if test ${sysconfdir} = '${prefix}/etc'; then
sysconfdir=/etc
fi