Skip to content
Snippets Groups Projects
Commit d555f6b9 authored by Jason Parker's avatar Jason Parker
Browse files

Merged revisions 181436 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r181436 | qwell | 2009-03-11 17:18:42 -0500 (Wed, 11 Mar 2009) | 4 lines
  
  Allow prefix to set localstatedir (when used and different from the default).
  
  This is similar to the /etc change that was made for the non-FreeBSD case.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@181444 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent ffc7510e
Branches
Tags
No related merge requests found
#! /bin/sh #! /bin/sh
# From configure.ac Revision: 178605 . # From configure.ac Revision: 180944 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for asterisk 1.6. # Generated by GNU Autoconf 2.61 for asterisk 1.6.
# #
...@@ -4113,8 +4113,10 @@ case "${host_os}" in ...@@ -4113,8 +4113,10 @@ case "${host_os}" in
;; ;;
esac esac
   
if test ${localstatedir} = '${prefix}/var'; then if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
localstatedir=/var if test ${localstatedir} = '${prefix}/var'; then
localstatedir=/var
fi
fi fi
   
BUILD_PLATFORM=${build} BUILD_PLATFORM=${build}
...@@ -57,8 +57,10 @@ case "${host_os}" in ...@@ -57,8 +57,10 @@ case "${host_os}" in
;; ;;
esac esac
if test ${localstatedir} = '${prefix}/var'; then if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
localstatedir=/var if test ${localstatedir} = '${prefix}/var'; then
localstatedir=/var
fi
fi fi
BUILD_PLATFORM=${build} BUILD_PLATFORM=${build}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment