]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor simplifications for test/automated/Makefile
authorGlenn Morris <rgm@gnu.org>
Sat, 2 Nov 2013 19:50:41 +0000 (12:50 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 2 Nov 2013 19:50:41 +0000 (12:50 -0700)
* test/automated/Makefile.in (top_builddir, abs_test, abs_lispsrc, lisp):
Remove variables.
(emacs): Use abs_top_srcdir, abs_srcdir rather than abs_lispsrc, abs_test.
(lisp-compile): Use ../../lisp rather than $lisp.

test/ChangeLog
test/automated/Makefile.in

index 726cacc13b003155d14d3a705ef0a73316682f72..8d91e334b78c92fab5b802e62df1c45c52814118 100644 (file)
@@ -1,3 +1,11 @@
+2013-11-02  Glenn Morris  <rgm@gnu.org>
+
+       * automated/Makefile.in (top_builddir, abs_test, abs_lispsrc, lisp):
+       Remove variables.
+       (emacs): Use abs_top_srcdir, abs_srcdir rather than abs_lispsrc,
+       abs_test.
+       (lisp-compile): Use ../../lisp rather than $lisp.
+
 2013-10-31  Michael Albinus  <michael.albinus@gmx.de>
 
        * automated/ert-tests.el (ert-test-stats-set-test-and-result):
index 17e37556a3e9dd6bbb8b9e07d38785ac008ccea3..2fed6a188ce97af9946db429fab992dfa8a4913e 100644 (file)
@@ -21,13 +21,9 @@ SHELL = @SHELL@
 
 srcdir = @srcdir@
 abs_top_srcdir = @abs_top_srcdir@
-top_builddir = @top_builddir@
 abs_top_builddir = @abs_top_builddir@
 test = $(srcdir)
-abs_test = $(abs_srcdir)
 VPATH = $(srcdir)
-abs_lispsrc = $(abs_top_srcdir)/lisp
-lisp = $(top_builddir)/lisp
 
 # You can specify a different executable on the make command line,
 # e.g. "make EMACS=../src/emacs ...".
@@ -48,7 +44,7 @@ BYTE_COMPILE_EXTRA_FLAGS =
 # The example above is just for developers, it should not be used by default.
 
 # The actual Emacs command run in the targets below.
-emacs = EMACSLOADPATH="$(abs_lispsrc):$(abs_test)" LC_ALL=C "$(EMACS)" $(EMACSOPT)
+emacs = EMACSLOADPATH="$(abs_top_srcdir)/lisp:$(abs_srcdir)" LC_ALL=C "$(EMACS)" $(EMACSOPT)
 
 # Common command to find subdirectories
 setwins=subdirs=`find . -type d -print`; \
@@ -81,7 +77,7 @@ doit:
 .PHONY: lisp-compile compile-main compile compile-always
 
 lisp-compile:
-       cd "$(lisp)"; $(MAKE) $(MFLAGS) compile EMACS="$(EMACS)"
+       cd ../../lisp && $(MAKE) $(MFLAGS) compile EMACS="$(EMACS)"
 
 # In `compile-main' we could directly do
 #    ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)"