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-12-13 12:11:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-18 19:48:00 +0000
commit7198387cd984f8ed30f3388c7be1b257a148a834 (patch)
treeb567e726abfe6008c735b775ba86842f3b263afd /meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
parente514845b040aec4d5441a144f9f1ccded1c4d495 (diff)
downloadpoky-7198387cd984f8ed30f3388c7be1b257a148a834.tar.gz
tcl: update 8.6.12 -> 8.6.13
(From OE-Core rev: 2a63074f948d9aaa5d7618f98318372a14dec6c3) 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.patch11
1 files changed, 7 insertions, 4 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 41aefd1deb..6dbef7077f 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,4 +1,4 @@
1From 34c3a1adc1bfd13fb877179c37ef74a108f2a749 Mon Sep 17 00:00:00 2001 1From 8a6c77cdd265fe7ce35929f58f1ade0c6bc4025b Mon Sep 17 00:00:00 2001
2From: Nitin A Kamble <nitin.a.kamble@intel.com> 2From: Nitin A Kamble <nitin.a.kamble@intel.com>
3Date: Fri, 13 Aug 2010 12:24:00 -0700 3Date: Fri, 13 Aug 2010 12:24:00 -0700
4Subject: [PATCH] tcl: fix a build issue 4Subject: [PATCH] tcl: fix a build issue
@@ -10,10 +10,10 @@ Upstream-Status: Inappropriate [upstream does not support installed tests]
10 1 file changed, 10 insertions(+), 10 deletions(-) 10 1 file changed, 10 insertions(+), 10 deletions(-)
11 11
12diff --git a/unix/Makefile.in b/unix/Makefile.in 12diff --git a/unix/Makefile.in b/unix/Makefile.in
13index 804532e..a9cb339 100644 13index b110fe9..d7b35a8 100644
14--- a/unix/Makefile.in 14--- a/unix/Makefile.in
15+++ b/unix/Makefile.in 15+++ b/unix/Makefile.in
16@@ -810,23 +810,23 @@ tcltest-real: 16@@ -814,23 +814,23 @@ tcltest-real:
17 test: test-tcl test-packages 17 test: test-tcl test-packages
18 18
19 test-tcl: ${TCLTEST_EXE} 19 test-tcl: ${TCLTEST_EXE}
@@ -41,7 +41,7 @@ index 804532e..a9cb339 100644
41 41
42 # 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
43 # 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
44@@ -844,25 +844,25 @@ dltest.marker: ${STUB_LIB_FILE} 44@@ -848,28 +848,28 @@ dltest.marker: ${STUB_LIB_FILE}
45 # 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
46 # via `make shell SCRIPT=/tmp/foo.tcl` 46 # via `make shell SCRIPT=/tmp/foo.tcl`
47 shell: ${TCL_EXE} 47 shell: ${TCL_EXE}
@@ -53,6 +53,9 @@ index 804532e..a9cb339 100644
53- $(SHELL_ENV) $(GDB) ./${TCL_EXE} 53- $(SHELL_ENV) $(GDB) ./${TCL_EXE}
54+ $(SHELL_ENV) $(GDB) ${TCL_EXE} 54+ $(SHELL_ENV) $(GDB) ${TCL_EXE}
55 55
56 lldb: ${TCL_EXE}
57 $(SHELL_ENV) $(LLDB) ./${TCL_EXE}
58
56 valgrind: ${TCL_EXE} ${TCLTEST_EXE} 59 valgrind: ${TCL_EXE} ${TCLTEST_EXE}
57- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} \ 60- $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} \
58+ $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ${TCLTEST_EXE} \ 61+ $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ${TCLTEST_EXE} \