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
This commit is contained in:
Jörg Mayer 2006-07-12 15:15:21 +00:00
parent ed3e02ed61
commit 5d7aa867e4
1 changed files with 1 additions and 1 deletions

View File

@ -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])