]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert previous change in test/Makefile.in
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 28 Apr 2022 08:16:50 +0000 (10:16 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 28 Apr 2022 08:16:50 +0000 (10:16 +0200)
* test/Makefile.in (test_template): Revert previous change, it isn't needed.

test/Makefile.in

index e7df121d0eb1c38de2e45a081eb5b97d25e2938f..3b6e116e65f274ce91686f3a375455fb6bf44d60 100644 (file)
@@ -221,13 +221,11 @@ define test_template
   ## The similar name is FOO.c if FOO begins with '{lib-,}src/', FOO.el
   ## otherwise.  Although this heuristic does not identify all the
   ## dependencies, it is better than nothing.
-  srcfile = $(patsubst %-tests,$(srcdir)/../%,$(1))$(if $(patsubst src/%,,$(patsubst lib-src/%,,$(1))),.el,.c)
   ifeq (,$(patsubst %-tests,,$(1))$(findstring -tests/,$(1)))
-  ifeq ($(shell test -e $(srcfile) && echo -n yes),yes)
-    $(1).log: $(srcfile)
+    $(1).log: $(patsubst %-tests,$(srcdir)/../%,$(1))$(if \
+                                       $(patsubst src/%,,$(patsubst lib-src/%,,$(1))),.el,.c)
     $(notdir $(1).log): $(1).log
   endif
-  endif
 
   ## Short aliases that always re-run the tests, with no logging.
   ## Define both with and without the directory name for ease of use.