emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: trunk r115773: Port xcrun configuration to GNU/Linux.


From: Glenn Morris
Subject: Re: trunk r115773: Port xcrun configuration to GNU/Linux.
Date: Fri, 27 Dec 2013 18:50:39 -0500
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

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.)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]