Mercurial > vim
diff src/configure.in @ 7231:a4d10eec6356 v7.4.924
commit https://github.com/vim/vim/commit/32d03b34ac8a34a962f57847fc431a2b4e14efea
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 19 13:46:48 2015 +0100
patch 7.4.924
Problem: DEVELOPER_DIR gets reset by configure.
Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
argument. (Kazuki Sakamoto, closes #482)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 19 Nov 2015 14:00:05 +0100 |
parents | 793ca14b5654 |
children | 6f398bb76c29 |
line wrap: on
line diff
--- a/src/configure.in +++ b/src/configure.in @@ -153,7 +153,7 @@ if test "`(uname) 2>/dev/null`" = Darwin AC_MSG_CHECKING(--with-developer-dir argument) AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools], DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR), - DEVELOPER_DIR=""; AC_MSG_RESULT(not present)) + AC_MSG_RESULT(not present)) if test "x$DEVELOPER_DIR" = "x"; then AC_PATH_PROG(XCODE_SELECT, xcode-select)