aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-07-12 15:15:21 +0000
committerJörg Mayer <jmayer@loplof.de>2006-07-12 15:15:21 +0000
commit5d7aa867e4f5111903cbeb88da2d8f31c3254547 (patch)
tree68d503cea407b428d2de6d831958a9bb77a807ee /configure.in
parented3e02ed61779007d5ffb060520959153ae57f24 (diff)
Bugfix:
Variables should *not* be addressed as ${prefix} but as $prefix instead. That way they will get substituted and we will not try to open '${prefix}/share/wireshark/radius' which might not exist on some systems. svn path=/trunk/; revision=18720
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 42d069be28..fefd79813d 100644
--- a/configure.in
+++ b/configure.in
@@ -386,7 +386,7 @@ fi
datafiledir=$datadir/wireshark
datafiledir=`(
test "x$prefix" = xNONE && prefix=$ac_default_prefix
- test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
+ test "x$exec_prefix" = xNONE && exec_prefix=$prefix
eval echo "$datafiledir"
)`
AC_DEFINE_UNQUOTED(DATAFILE_DIR,"$datafiledir", [Directory for data])