From: Tilghman Lesher Date: Mon, 24 Sep 2007 17:22:08 +0000 (+0000) Subject: In the source, keys are relative to the datadir, not varlib (which is the same X-Git-Tag: 1.4.12~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=596cc77c99312697d778b1c9b25fdb94e818de75;p=thirdparty%2Fasterisk.git In the source, keys are relative to the datadir, not varlib (which is the same in most cases, but it's good to be accurate). Closes issue #10811 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@83695 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/build_tools/make_defaults_h b/build_tools/make_defaults_h index f6559f226e..dfd3bc2a67 100755 --- a/build_tools/make_defaults_h +++ b/build_tools/make_defaults_h @@ -14,7 +14,7 @@ cat << END #define AST_DATA_DIR "${INSTALL_PATH}${ASTDATADIR}" #define AST_LOG_DIR "${INSTALL_PATH}${ASTLOGDIR}" #define AST_AGI_DIR "${INSTALL_PATH}${AGI_DIR}" -#define AST_KEY_DIR "${INSTALL_PATH}${ASTVARLIBDIR}/keys" +#define AST_KEY_DIR "${INSTALL_PATH}${ASTDATADIR}/keys" #define AST_DB "${INSTALL_PATH}${ASTVARLIBDIR}/astdb" #define AST_TMP_DIR "${INSTALL_PATH}${ASTSPOOLDIR}/tmp"