summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-11-20 14:31:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-22 12:26:46 +0000
commit008135217286e51e639d23f2d132ed3cb2f5e0af (patch)
tree127810cbccaeb829b5c107d470f19476e08f2a5e /meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
parentdeef918ab212a1549ffec25fd8318dec044d1387 (diff)
downloadpoky-008135217286e51e639d23f2d132ed3cb2f5e0af.tar.gz
tcl: update 8.6.11 -> 8.6.12
(From OE-Core rev: 511005999739be5dc87955135880a248110dc1e2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch27
1 files changed, 19 insertions, 8 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch b/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
index 5a10c93a31..41aefd1deb 100644
--- a/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
+++ b/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
@@ -1,10 +1,19 @@
1From 34c3a1adc1bfd13fb877179c37ef74a108f2a749 Mon Sep 17 00:00:00 2001
2From: Nitin A Kamble <nitin.a.kamble@intel.com>
3Date: Fri, 13 Aug 2010 12:24:00 -0700
4Subject: [PATCH] tcl: fix a build issue
5
1Upstream-Status: Inappropriate [upstream does not support installed tests] 6Upstream-Status: Inappropriate [upstream does not support installed tests]
2 7
3Index: unix/Makefile.in 8---
4=================================================================== 9 unix/Makefile.in | 20 ++++++++++----------
5--- a/unix.orig/Makefile.in 2013-11-10 23:37:34.243424934 -0800 10 1 file changed, 10 insertions(+), 10 deletions(-)
6+++ b/unix/Makefile.in 2013-11-10 23:37:34.243424934 -0800 11
7@@ -709,23 +709,23 @@ 12diff --git a/unix/Makefile.in b/unix/Makefile.in
13index 804532e..a9cb339 100644
14--- a/unix/Makefile.in
15+++ b/unix/Makefile.in
16@@ -810,23 +810,23 @@ tcltest-real:
8 test: test-tcl test-packages 17 test: test-tcl test-packages
9 18
10 test-tcl: ${TCLTEST_EXE} 19 test-tcl: ${TCLTEST_EXE}
@@ -32,7 +41,7 @@ Index: unix/Makefile.in
32 41
33 # The following target generates the shared libraries in dltest/ that are used 42 # The following target generates the shared libraries in dltest/ that are used
34 # for testing; they are included as part of the "tcltest" target (via the 43 # for testing; they are included as part of the "tcltest" target (via the
35@@ -743,23 +743,23 @@ 44@@ -844,25 +844,25 @@ dltest.marker: ${STUB_LIB_FILE}
36 # This target can be used to run tclsh from the build directory 45 # This target can be used to run tclsh from the build directory
37 # via `make shell SCRIPT=/tmp/foo.tcl` 46 # via `make shell SCRIPT=/tmp/foo.tcl`
38 shell: ${TCL_EXE} 47 shell: ${TCL_EXE}
@@ -45,8 +54,10 @@ Index: unix/Makefile.in
45+ $(SHELL_ENV) $(GDB) ${TCL_EXE} 54+ $(SHELL_ENV) $(GDB) ${TCL_EXE}
46 55
47 valgrind: ${TCL_EXE} ${TCLTEST_EXE} 56 valgrind: ${TCL_EXE} ${TCLTEST_EXE}
48- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl -singleproc 1 -constraints valgrind $(TESTFLAGS) 57- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} \
49+ $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl -singleproc 1 -constraints valgrind $(TESTFLAGS) 58+ $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ${TCLTEST_EXE} \
59 $(TOP_DIR)/tests/all.tcl -singleproc 1 -constraints valgrind \
60 $(TESTFLAGS)
50 61
51 valgrindshell: ${TCL_EXE} 62 valgrindshell: ${TCL_EXE}
52- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCL_EXE} $(SCRIPT) 63- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCL_EXE} $(SCRIPT)