Skip to content
Snippets Groups Projects
Commit 0ba6337d authored by Alexander Traud's avatar Alexander Traud
Browse files

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

Reported by: Stuart Henderson

Change-Id: Ieae8624f48b6ae78cf29930b9a45a3c842c7a764
parent 0e91eb23
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment