From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: trunk r115773: Port xcrun configuration to GNU/Linux. Date: Sat, 28 Dec 2013 10:54:41 +0100 Message-ID: <25A11E88-BCFF-47E8-9ED6-D2B44AB6268C@swipnet.se> References: <3vtxdtx38w.fsf@fencepost.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1388224505 31659 80.91.229.3 (28 Dec 2013 09:55:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 28 Dec 2013 09:55:05 +0000 (UTC) Cc: Paul Eggert , emacs-devel To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 28 10:55:07 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 1Vwqbm-0002Xd-Ag for ged-emacs-devel@m.gmane.org; Sat, 28 Dec 2013 10:55:02 +0100 Original-Received: from localhost ([::1]:51666 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vwqbl-000352-Pa for ged-emacs-devel@m.gmane.org; Sat, 28 Dec 2013 04:55:01 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50763) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vwqbd-00032c-LV for emacs-devel@gnu.org; Sat, 28 Dec 2013 04:54:59 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VwqbX-0002Hv-RB for emacs-devel@gnu.org; Sat, 28 Dec 2013 04:54:53 -0500 Original-Received: from mailfe05.swip.net ([212.247.154.129]:40557 helo=swip.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwqbX-0002Hi-KL; Sat, 28 Dec 2013 04:54:47 -0500 X-T2-Spam-Status: No, hits=0.8 required=5.0 tests=BAYES_50 Original-Received: from hosdjarv.se (account mj138573@tele2.se [46.59.42.57] verified) by mailfe05.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 460115908; Sat, 28 Dec 2013 10:54:42 +0100 In-Reply-To: <3vtxdtx38w.fsf@fencepost.gnu.org> X-Mailer: Apple Mail (2.1827) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 212.247.154.129 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:166940 Archived-At: Hello. 28 dec 2013 kl. 00:50 skrev Glenn Morris : >=20 > xcsdkdir=3D > AC_CHECK_PROGS(XCRUN, [xcrun]) > if test -n "$XCRUN"; then > AC_CHECK_PROGS(MAKE, [make "$XCRUN make"]) > test -n "$MAKE" && export MAKE > xcsdkdir=3D`$XCRUN --show-sdk-path 2>/dev/null` > fi >=20 > I don't have "xcrun" installed. So AC_CHECK_PROGS never tests for = make. > This results in lib/Makefile containing >=20 > MAKE =3D=20 >=20 > for me. This is obviously A Bad Thing. Eg: >=20 > make -C lib > /bin/bash: all-am: command not found This is strange, as configure itself sets MAKE later on. That is why = this is early, to override the later setting. Are you running on a = Darwin system? >=20 >=20 > (I'm loving this feature freeze as much as usual.) Compiling Emacs is considered a new feature? Jan D.