This is an automated email from Gerrit.

Antonio Borneo (borneo.anto...@gmail.com) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/5986

-- gerrit

commit 16d3626969112a03d411d263931b68cb1d4bf8b1
Author: Antonio Borneo <borneo.anto...@gmail.com>
Date:   Wed Dec 23 19:15:02 2020 +0100

    Makefile.am: fix override of target 'check-recursive'
    
    To prevent executing the Jim Tcl tests, the makefile's target
    'check-recursive' has been overridden in commit 56d163ce7951
    ("jimtcl: update to 0.77, the current version, enable only
    specific modules").
    This causes a runtime warning during build:
        Makefile:6332: warning: overriding recipe for target 'check-recursive'
        Makefile:5098: warning: ignoring old recipe for target 'check-recursive'
    
    Instead of override the makefile's target 'check-recursive',
    prevent the recursion by re-assigning as empty the variable
    SUBDIRS for this specific target only.
    
    Change-Id: I03d1c467eba42316a59aeed4612d6bdbe6211282
    Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com>
    Fixes: 56d163ce7951 ("jimtcl: update to 0.77, the current version, enable 
only specific modules")

diff --git a/Makefile.am b/Makefile.am
index 930a307..d2e30ce 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,8 +6,7 @@ AUTOMAKE_OPTIONS = gnu 1.6
 DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim
 
 # do not run Jim Tcl tests (esp. during distcheck)
-check-recursive:
-       @true
+check-recursive: SUBDIRS :=
 
 nobase_dist_pkgdata_DATA = \
        contrib/libdcc/dcc_stdio.c \

-- 


_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to