From e43817c1e0a08cd0e5b1f8f364c63f3043da8a08 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 23 Oct 2013 19:21:23 -0700 Subject: [PATCH] * lisp/Makefile.in (check-declare): Remove unnecessary path in -l argument --- lisp/ChangeLog | 2 ++ lisp/Makefile.in | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 16b88cf8f6e..f69ec89b48d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2013-10-24 Glenn Morris + * Makefile.in (check-declare): Remove unnecessary path in -l argument. + * Makefile.in (abs_top_srcdir): New, set by configure. (update-subdirs): Correct build-aux location. diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 58610387ac3..89cc26ed4ae 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -266,7 +266,7 @@ compile-first: $(COMPILE_FIRST) # In `compile-main' we could directly do # ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)" # and it works, but it generates a lot of messages like -# make[2]: « gnus/gnus-mlspl.elc » is up to date. +# make[2]: gnus/gnus-mlspl.elc is up to date. # so instead, we use "xargs echo" to split the list of file into manageable # chunks and then use an intermediate `compile-targets' target so the # actual targets (the .elc files) are not mentioned as targets on the @@ -452,8 +452,7 @@ maintainer-clean: distclean bootstrap-clean .PHONY: check-declare check-declare: - $(emacs) -l $(lisp)/emacs-lisp/check-declare \ - --eval '(check-declare-directory "$(lisp)")' + $(emacs) -l check-declare --eval '(check-declare-directory "$(lisp)")' # Dependencies -- 2.11.4.GIT