aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-22 20:02:58 +0000
committerobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-22 20:02:58 +0000
commitfd9383cc9756a2e49a04fb117fc18640a603988b (patch)
tree3cad08a11f27571f7b55d7161cbbce6866139666 /configure.in
parent6e43e56a76bcf2bcfe3a79d29c5dfa39b7ce9faa (diff)
More correct implementation of the --disable-usr-local option.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10661 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 33f3adb648..ac9aa29d7f 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.255 2004/04/14 18:42:19 obiot Exp $
+# $Id: configure.in,v 1.256 2004/04/22 20:02:58 obiot Exp $
#
AC_INIT(etypes.h)
@@ -152,10 +152,10 @@ dnl XXX FIXME don't include /usr/local if it is already in the system
dnl search path as this causes gcc 3.2 on Linux to complain about a change
dnl of the system search order for includes
AC_ARG_ENABLE(usr-local,
-[ --enable-usr-local look for headers and libs in /usr/local tree. [default=yes]],enable_usr_local=$enableval,enable_usr_local=yes)
+[ --enable-usr-local look for headers and libs in /usr/local tree. [default=yes]],ac_cv_enable_usr_local=$enableval,ac_cv_enable_usr_local=yes)
AC_MSG_CHECKING(whether to use /usr/local for headers and libraries)
-if test "x$enable_usr_local" = "xyes" ; then
+if test "x$ac_cv_enable_usr_local" = "xyes" ; then
AC_MSG_RESULT(yes)
#
# Arrange that we search for header files in the source directory