This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via b9cf3661ab0675ef091588e26080756ecd0d4197 (commit) from c349b260bfbd99949e4fbc07c9b295ce0ed6118a (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit b9cf3661ab0675ef091588e26080756ecd0d4197 Author: Raymond Toy toy.raymond@gmail.com Date: Sat May 4 21:15:20 2013 -0700
Clean up DEPENDS
* GNUmakefile * Replace $(DEPENDS) with $(CC) * Config.x86_common * Set DEPENDS_FLAG to -MM
diff --git a/src/lisp/Config.x86_common b/src/lisp/Config.x86_common index 832d8d6..6f0ec95 100644 --- a/src/lisp/Config.x86_common +++ b/src/lisp/Config.x86_common @@ -62,8 +62,7 @@ ARCH_SRC = x86-arch.c OS_SRC = os-common.c e_rem_pio2.c k_rem_pio2.c
NM = nm -gp -DEPEND = $(CC) -MM -E -DEPEND_FLAGS = +DEPEND_FLAGS = -MM
# This no longer has aliasing problems, so no need to use # -ffloat-store and -fno-strict-aliasing anymore. diff --git a/src/lisp/GNUmakefile b/src/lisp/GNUmakefile index a3289eb..a9ab587 100644 --- a/src/lisp/GNUmakefile +++ b/src/lisp/GNUmakefile @@ -58,7 +58,7 @@ clean: depend: Depends
Depends: ${SRCS} - $(DEPEND) ${DEPEND_FLAGS} ${CFLAGS} ${CPPFLAGS} $^ > ,depends + $(CC) ${DEPEND_FLAGS} ${CFLAGS} ${CPPFLAGS} $^ > ,depends mv ,depends Depends
-include Depends
-----------------------------------------------------------------------
Summary of changes: src/lisp/Config.x86_common | 3 +-- src/lisp/GNUmakefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-)
hooks/post-receive