summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch
diff options
context:
space:
mode:
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.patch17
1 files changed, 9 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 6dbef7077f..09c49daa2c 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,19 +1,18 @@
1From 8a6c77cdd265fe7ce35929f58f1ade0c6bc4025b Mon Sep 17 00:00:00 2001 1From 371aa300369e9ea3234cba22d5c0babc7d40dfdf 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
5 5
6Upstream-Status: Inappropriate [upstream does not support installed tests] 6Upstream-Status: Inappropriate [upstream does not support installed tests]
7
8--- 7---
9 unix/Makefile.in | 20 ++++++++++---------- 8 unix/Makefile.in | 20 ++++++++++----------
10 1 file changed, 10 insertions(+), 10 deletions(-) 9 1 file changed, 10 insertions(+), 10 deletions(-)
11 10
12diff --git a/unix/Makefile.in b/unix/Makefile.in 11diff --git a/unix/Makefile.in b/unix/Makefile.in
13index b110fe9..d7b35a8 100644 12index 9dd053d..a3b7d69 100644
14--- a/unix/Makefile.in 13--- a/unix/Makefile.in
15+++ b/unix/Makefile.in 14+++ b/unix/Makefile.in
16@@ -814,23 +814,23 @@ tcltest-real: 15@@ -815,7 +815,7 @@ tcltest-real:
17 test: test-tcl test-packages 16 test: test-tcl test-packages
18 17
19 test-tcl: ${TCLTEST_EXE} 18 test-tcl: ${TCLTEST_EXE}
@@ -21,9 +20,11 @@ index b110fe9..d7b35a8 100644
21+ $(SHELL_ENV) ${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) 20+ $(SHELL_ENV) ${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl $(TESTFLAGS)
22 21
23 gdb-test: ${TCLTEST_EXE} 22 gdb-test: ${TCLTEST_EXE}
24 @echo "set env @LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}" > gdb.run 23 @printf '%s ' set env @LD_LIBRARY_PATH_VAR@=\"`pwd`$${@LD_LIBRARY_PATH_VAR@:+:$${@LD_LIBRARY_PATH_VAR}}\" > gdb.run
25 @echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run 24@@ -824,17 +824,17 @@ gdb-test: ${TCLTEST_EXE}
26 @echo "set args $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) -singleproc 1" >> gdb.run 25 @printf '\n' >>gdb.run
26 @printf '%s ' set args $(call shquotequote,$(TOP_DIR))/tests/all.tcl\
27 $(call shquotequote,$(TESTFLAGS)) -singleproc 1 >> gdb.run
27- $(GDB) ./${TCLTEST_EXE} --command=gdb.run 28- $(GDB) ./${TCLTEST_EXE} --command=gdb.run
28+ $(GDB) ${TCLTEST_EXE} --command=gdb.run 29+ $(GDB) ${TCLTEST_EXE} --command=gdb.run
29 rm gdb.run 30 rm gdb.run
@@ -41,7 +42,7 @@ index b110fe9..d7b35a8 100644
41 42
42 # The following target generates the shared libraries in dltest/ that are used 43 # 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 44 # for testing; they are included as part of the "tcltest" target (via the
44@@ -848,28 +848,28 @@ dltest.marker: ${STUB_LIB_FILE} 45@@ -852,28 +852,28 @@ dltest.marker: ${STUB_LIB_FILE}
45 # This target can be used to run tclsh from the build directory 46 # This target can be used to run tclsh from the build directory
46 # via `make shell SCRIPT=/tmp/foo.tcl` 47 # via `make shell SCRIPT=/tmp/foo.tcl`
47 shell: ${TCL_EXE} 48 shell: ${TCL_EXE}