aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-22 12:55:49 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-22 12:55:49 +0000
commit3889dd878be90598309d5dbdbc0a8c02ebde3c16 (patch)
treecead63b1ff8e8dccf3b68ea6cc6246803bfb4130 /configure.ac
parente9a0647b9ac65607f14a0302a10f24cee88e7092 (diff)
revert my change to use the AC_PREFIX_DEFAULT macro since it is not something
that is expanded inline, so it didn't do what I wanted it to. The --help output will be wrong again, but that's better than completely breaking it. :) (Thanks to jcollie for catching this!) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35439 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 db5d50fb9..23813573d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,10 +24,10 @@ AC_REVISION($Revision$)
case "${host}" in
*freebsd*)
- AC_PREFIX_DEFAULT(/usr/local)
+ ac_default_prefix=/usr/local
;;
*)
- AC_PREFIX_DEFAULT(/usr)
+ ac_default_prefix=/usr
if test ${sysconfdir} = '${prefix}/etc'; then
sysconfdir=/etc
fi