mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 12:42:02 +00:00
Fix FHS default modulesdir define
The default value of libdir is (unexpanded) '${exec_prefix}/lib'. In
the non-FHS path this is fine because it only ends up in a variable
where it will be expanded later. By using this to define modulesdir
we let it slip into a define where it made no sense.
This commit is contained in:
+2
-1
@@ -60,7 +60,8 @@ default_soundsdir="$prefix/sounds"
|
||||
default_storagedir="$prefix/storage"
|
||||
|
||||
if test "$enable_fhs" = yes; then
|
||||
prefix="/usr"
|
||||
prefix="/usr" exec_prefix="$prefix"
|
||||
libdir="$(eval echo "$libdir")"
|
||||
sysconfdir="/etc/freeswitch"
|
||||
localstatedir="/var"
|
||||
default_dbdir="/var/lib/freeswitch/db"
|
||||
|
||||
Reference in New Issue
Block a user