Hi,
I have a recently upgraded OSX Yosemite (10.10) system I am attempting to build emacs on. I have attempted to update my Xcode, command-line tools, brew, etc, prior to performing a build.
I begin by running git checkout emacs-24.5
After running autogen.sh, then ./configure --with-ns, then invoking make, I receive this information.
make[1]: Circular bootstrap-emacs <- temacs dependency dropped.
cd ../lisp; /Applications/Xcode.app/Contents/Developer/usr/bin/make update-subdirs
for file in `find . -type d -print`; do case $file in .*/cedet* | .*/leim* ) ;; *) wins="$wins${wins:+ }$file" ;; esac; done; \
for file in $wins; do \
./../build-aux/update-subdirs $file; \
done;
if test "no" = "yes"; then \
rm -f bootstrap-emacs; \
ln temacs bootstrap-emacs; \
else \
./temacs --batch --load loadup bootstrap || exit 1; \
test "X" = X || -zex emacs; \
mv -f emacs bootstrap-emacs; \
fi
/bin/sh: ./temacs: No such file or directory
make[1]: *** [bootstrap-emacs] Error 1
make: *** [src] Error 2
Make has the right of it: find . | grep temacs from the repository root returns nothing.
I perfectly am willing to believe that my system is misconfigured and the issue lies solely in the computer and the user, however, I am not sure exactly where to start the hunt to find the misconfiguration.