From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: trunk r115773: Port xcrun configuration to GNU/Linux. Date: Fri, 27 Dec 2013 18:50:39 -0500 Message-ID: <3vtxdtx38w.fsf@fencepost.gnu.org> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1388188243 9993 80.91.229.3 (27 Dec 2013 23:50:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 27 Dec 2013 23:50:43 +0000 (UTC) Cc: emacs-devel@gnu.org To: Paul Eggert , Jan =?utf-8?Q?Dj=C3=A4rv?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 28 00:50:50 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VwhB1-0005rR-Gs for ged-emacs-devel@m.gmane.org; Sat, 28 Dec 2013 00:50:47 +0100 Original-Received: from localhost ([::1]:50679 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwhB1-0000Qv-0l for ged-emacs-devel@m.gmane.org; Fri, 27 Dec 2013 18:50:47 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwhAx-0000Qq-G7 for emacs-devel@gnu.org; Fri, 27 Dec 2013 18:50:44 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VwhAw-0003Zm-Ms for emacs-devel@gnu.org; Fri, 27 Dec 2013 18:50:43 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwhAw-0003Zi-JZ for emacs-devel@gnu.org; Fri, 27 Dec 2013 18:50:42 -0500 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1VwhAu-00057B-7G; Fri, 27 Dec 2013 18:50:40 -0500 X-Spook: EuroFed Hugo Chavez Crypto AG Perl-RSA national X-Ran: YR^=8aOX[>#;2rVcgO>~^h*EO^-?.%4s~B1r$||r(~LQP=>_UZDU+SuTw1r}9(Mthh}Tp0 X-Hue: red X-Attribution: GM In-Reply-To: (Paul Eggert's message of "Fri, 27 Dec 2013 19:14:13 +0000") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:166930 Archived-At: xcsdkdir= AC_CHECK_PROGS(XCRUN, [xcrun]) if test -n "$XCRUN"; then AC_CHECK_PROGS(MAKE, [make "$XCRUN make"]) test -n "$MAKE" && export MAKE xcsdkdir=`$XCRUN --show-sdk-path 2>/dev/null` fi I don't have "xcrun" installed. So AC_CHECK_PROGS never tests for make. This results in lib/Makefile containing MAKE = for me. This is obviously A Bad Thing. Eg: make -C lib /bin/bash: all-am: command not found (I'm loving this feature freeze as much as usual.)