Merge "BuildSystem: Fix a typo related to ./configure --prefix=<path> on OpenBSD."

This commit is contained in:
Joshua Colp
2018-02-20 05:11:14 -06:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ AC_SUBST([astvarrundir], ['${localstatedir}/run/asterisk'])dnl
case "${host_os}" in
*bsd*)
if test ${prefix} = 'NONE'; then
if test ${prefix} != 'NONE'; then
astvarlibdir='${prefix}/share/asterisk'
astdbdir='${localstatedir}/db/asterisk'
fi