mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 20:08:17 +00:00
Merged revisions 181444 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r181444 | qwell | 2009-03-11 17:20:13 -0500 (Wed, 11 Mar 2009) | 11 lines 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/branches/1.6.1@181457 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
6
configure
vendored
6
configure
vendored
@@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Revision: 177164 .
|
# From configure.ac Revision: 180947 .
|
||||||
# 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.
|
||||||
#
|
#
|
||||||
@@ -4073,8 +4073,10 @@ case "${host_os}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if test ${localstatedir} = '${prefix}/var'; then
|
if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
|
||||||
|
if test ${localstatedir} = '${prefix}/var'; then
|
||||||
localstatedir=/var
|
localstatedir=/var
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BUILD_PLATFORM=${build}
|
BUILD_PLATFORM=${build}
|
||||||
|
|||||||
@@ -45,8 +45,10 @@ case "${host_os}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if test ${localstatedir} = '${prefix}/var'; then
|
if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
|
||||||
|
if test ${localstatedir} = '${prefix}/var'; then
|
||||||
localstatedir=/var
|
localstatedir=/var
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BUILD_PLATFORM=${build}
|
BUILD_PLATFORM=${build}
|
||||||
|
|||||||
Reference in New Issue
Block a user