diff options
| author | Glenn Morris | 2013-10-23 19:21:23 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-10-23 19:21:23 -0700 |
| commit | e43817c1e0a08cd0e5b1f8f364c63f3043da8a08 (patch) | |
| tree | b3f30edaf7cd37a585bb5b54835c01febeea1723 | |
| parent | eb9a36619e5ba70079fc098a38e2d8be721d5b0b (diff) | |
| download | emacs-e43817c1e0a08cd0e5b1f8f364c63f3043da8a08.tar.gz emacs-e43817c1e0a08cd0e5b1f8f364c63f3043da8a08.zip | |
* lisp/Makefile.in (check-declare): Remove unnecessary path in -l argument
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2013-10-24 Glenn Morris <rgm@gnu.org> | 1 | 2013-10-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (check-declare): Remove unnecessary path in -l argument. | ||
| 4 | |||
| 3 | * Makefile.in (abs_top_srcdir): New, set by configure. | 5 | * Makefile.in (abs_top_srcdir): New, set by configure. |
| 4 | (update-subdirs): Correct build-aux location. | 6 | (update-subdirs): Correct build-aux location. |
| 5 | 7 | ||
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) | |||
| 266 | # In `compile-main' we could directly do | 266 | # In `compile-main' we could directly do |
| 267 | # ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)" | 267 | # ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)" |
| 268 | # and it works, but it generates a lot of messages like | 268 | # and it works, but it generates a lot of messages like |
| 269 | # make[2]: « gnus/gnus-mlspl.elc » is up to date. | 269 | # make[2]: gnus/gnus-mlspl.elc is up to date. |
| 270 | # so instead, we use "xargs echo" to split the list of file into manageable | 270 | # so instead, we use "xargs echo" to split the list of file into manageable |
| 271 | # chunks and then use an intermediate `compile-targets' target so the | 271 | # chunks and then use an intermediate `compile-targets' target so the |
| 272 | # actual targets (the .elc files) are not mentioned as targets on the | 272 | # actual targets (the .elc files) are not mentioned as targets on the |
| @@ -452,8 +452,7 @@ maintainer-clean: distclean bootstrap-clean | |||
| 452 | .PHONY: check-declare | 452 | .PHONY: check-declare |
| 453 | 453 | ||
| 454 | check-declare: | 454 | check-declare: |
| 455 | $(emacs) -l $(lisp)/emacs-lisp/check-declare \ | 455 | $(emacs) -l check-declare --eval '(check-declare-directory "$(lisp)")' |
| 456 | --eval '(check-declare-directory "$(lisp)")' | ||
| 457 | 456 | ||
| 458 | # Dependencies | 457 | # Dependencies |
| 459 | 458 | ||