]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Properly quote path on Darwin.
authorTilghman Lesher <tilghman@meg.abyt.es>
Sun, 26 Dec 2010 21:15:58 +0000 (21:15 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Sun, 26 Dec 2010 21:15:58 +0000 (21:15 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@299752 65c4cc65-6c06-0410-ace0-fbb531ad65f3

configure.ac

index 219897632ea08ee19744eaa6933a549c9b46b59b..9a09e6c326f6f024e60cbf47ef35f45261585c2d 100644 (file)
@@ -89,10 +89,10 @@ case "${host_os}" in
      darwin*)
      AC_PREFIX_DEFAULT([/usr/local])
      if test ${prefix} = 'NONE'; then
-        astlibdir=/Library/Application Support/Asterisk/Modules
-        astvarlibdir=/Library/Application Support/Asterisk
+        astlibdir='/Library/Application Support/Asterisk/Modules'
+        astvarlibdir='/Library/Application Support/Asterisk'
         astlogdir=/Library/Logs/Asterisk
-        astvarrundir=/Library/Application Support/Asterisk/Run
+        astvarrundir='/Library/Application Support/Asterisk/Run'
      fi
      AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.])
      AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])