You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2016/08/23 03:58:06 UTC

[trafficserver] branch master updated: Check for AM_EXTRA_RECURSIVE_TARGETS on older automake versions.

This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  cc82eec   Check for AM_EXTRA_RECURSIVE_TARGETS on older automake versions.
cc82eec is described below

commit cc82eec78c14dbe993c66d91f0901b9f373a80bf
Author: James Peach <jp...@apache.org>
AuthorDate: Mon Aug 22 20:57:58 2016 -0700

    Check for AM_EXTRA_RECURSIVE_TARGETS on older automake versions.
---
 configure.ac            | 2 +-
 plugins/esi/Makefile.am | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7e4adf6..fc15793 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,7 +49,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability tar-ustar foreign no-installinf
 AM_MAINTAINER_MODE([enable])
 
 # Enable a recursive "tidy" rule for clang-tidy.
-AM_EXTRA_RECURSIVE_TARGETS([tidy])
+m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], [AM_EXTRA_RECURSIVE_TARGETS([tidy])])
 
 AC_CONFIG_HEADERS([lib/ink_autoconf.h])
 
diff --git a/plugins/esi/Makefile.am b/plugins/esi/Makefile.am
index e6dc2cd..3e21961 100644
--- a/plugins/esi/Makefile.am
+++ b/plugins/esi/Makefile.am
@@ -100,9 +100,6 @@ gzip_test_LDADD = libtest.la -lz
 
 TESTS = $(check_PROGRAMS)
 
-test:: $(TESTS)
-	for f in $(TESTS) ; do ./$$f; if [ $$? -ne 0 ]; then break; fi done
-
 include $(top_srcdir)/build/tidy.mk
 
 tidy-local: $(DIST_SOURCES)

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].