1From 27bda5ee884e79d6d0e76955124d2b0c5798d6cf Mon Sep 17 00:00:00 2001 2From: Mingli Yu <mingli.yu@windriver.com> 3Date: Mon, 25 Feb 2019 00:34:17 -0800 4Subject: [PATCH] Makefile.am: remove regression dir 5 6Remove regression dir to fix below do_compile 7error: 8| Making all in regression 9| /bin/sh: line 20: cd: regression: No such file or directory 10| Makefile:451: recipe for target 'all-recursive' failed 11 12BTW, it should be safe not to cover regression dir 13as there is no Makefile.in under ${S}/regression 14and the content of ${S}/regression/Makefile as below. 15------------------------------------- 16all: 17 18install: 19 20check: 21 ./TEST 22 23distclean: clean 24 25maintainer-clean: clean 26 27distdir: 28 29clean: 30 @rm -rf output 31 32.PHONY: all install 33------------------------------------- 34 35Upstream-Status: Pending 36 37Signed-off-by: Mingli Yu <mingli.yu@windriver.com> 38--- 39 Makefile.am | 5 ++--- 40 1 file changed, 2 insertions(+), 3 deletions(-) 41 42diff --git a/Makefile.am b/Makefile.am 43index ba37a42..548fea7 100644 44--- a/Makefile.am 45+++ b/Makefile.am 46@@ -1,7 +1,7 @@ 47 ## Process this file with automake to produce Makefile.in 48 AUTOMAKE_OPTIONS = no-texinfo.tex 49 50-SUBDIRS = intl src doc po man regression 51+SUBDIRS = intl src doc po man 52 53 BUILT_SOURCES = 54 55@@ -13,8 +13,7 @@ EXTRA_DIST = README.md \ 56 aclocal/UTIMBUF.m4 \ 57 miscel/Makefile.mingw32 \ 58 miscel/README.vc++ \ 59- bootstrap \ 60- regression 61+ bootstrap 62 63 DISTCLEANFILES=config/config.cache config/config.log config.h 64 65-- 662.17.1 67 68