summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/bash/bash/build-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/bash/bash/build-tests.patch')
-rw-r--r--meta/recipes-extended/bash/bash/build-tests.patch16
1 files changed, 9 insertions, 7 deletions
diff --git a/meta/recipes-extended/bash/bash/build-tests.patch b/meta/recipes-extended/bash/bash/build-tests.patch
index 5f2dae94a1..ea38bace9b 100644
--- a/meta/recipes-extended/bash/bash/build-tests.patch
+++ b/meta/recipes-extended/bash/bash/build-tests.patch
@@ -1,19 +1,24 @@
1Add 'ptest' target to Makefile, to run tests without checking dependencies. 1From 318b762837c2ad25319caeaf0320eff613b64daf Mon Sep 17 00:00:00 2001
2From: Anders Roxell <anders.roxell@enea.com>
3Date: Wed, 19 Dec 2012 17:18:31 +0100
4Subject: [PATCH] Add 'ptest' target to Makefile, to run tests without checking
5 dependencies.
2 6
3Upstream-Status: Pending 7Upstream-Status: Pending
4Signed-off-by: Anders Roxell <anders.roxell@enea.com> 8Signed-off-by: Anders Roxell <anders.roxell@enea.com>
5 9
6Rebase to 5.0 10Rebase to 5.0
7Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> 11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
12
8--- 13---
9 Makefile.in | 24 +++++++++++++++++++----- 14 Makefile.in | 24 +++++++++++++++++++-----
10 1 file changed, 19 insertions(+), 5 deletions(-) 15 1 file changed, 19 insertions(+), 5 deletions(-)
11 16
12diff --git a/Makefile.in b/Makefile.in 17diff --git a/Makefile.in b/Makefile.in
13index 5fcb44b..de1c255 100644 18index bc97049..937ce39 100644
14--- a/Makefile.in 19--- a/Makefile.in
15+++ b/Makefile.in 20+++ b/Makefile.in
16@@ -932,20 +932,34 @@ maybe-clean: 21@@ -943,20 +943,34 @@ maybe-clean:
17 fi 22 fi
18 23
19 recho$(EXEEXT): $(SUPPORT_SRC)recho.c 24 recho$(EXEEXT): $(SUPPORT_SRC)recho.c
@@ -51,8 +56,5 @@ index 5fcb44b..de1c255 100644
51+ 56+
52+runtest: 57+runtest:
53 @( cd $(srcdir)/tests && \ 58 @( cd $(srcdir)/tests && \
54 PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} ) 59 BUILD_DIR=$(BUILD_DIR) PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} )
55 60
56--
572.7.4
58