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

This commit is contained in:
Jenkins2
2018-02-19 18:31:29 -06:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

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

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