summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch15
1 files changed, 8 insertions, 7 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch b/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
index 16f7c80516..17d251d554 100644
--- a/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
+++ b/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
@@ -14,10 +14,11 @@ Upstream-Status: Inappropriate [configuration]
14 14
15Signed-off-by: Song.Li <Song.Li@windriver.com> 15Signed-off-by: Song.Li <Song.Li@windriver.com>
16Signed-off-by: Kai Kang <kai.kang@windriver.com> 16Signed-off-by: Kai Kang <kai.kang@windriver.com>
17 17Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
18--- 18---
19 configure | 2 +- 19 configure | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-) 20 configure.in | 2 +-
21 2 files changed, 2 insertions(+), 2 deletions(-)
21 22
22Index: unix/configure 23Index: unix/configure
23=================================================================== 24===================================================================
@@ -27,8 +28,8 @@ Index: unix/configure
27 28
28 eval "TCL_LIB_FILE=${TCL_LIB_FILE}" 29 eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
29 30
30-TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)' 31-test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)'
31+TCL_LIBRARY='$(libdir)/tcl$(VERSION)' 32+test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
32 PRIVATE_INCLUDE_DIR='$(includedir)' 33 PRIVATE_INCLUDE_DIR='$(includedir)'
33 HTML_DIR='$(DISTDIR)/html' 34 HTML_DIR='$(DISTDIR)/html'
34 35
@@ -40,8 +41,8 @@ Index: unix/configure.in
40 41
41 eval "TCL_LIB_FILE=${TCL_LIB_FILE}" 42 eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
42 43
43-TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)' 44-test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)'
44+TCL_LIBRARY='$(libdir)/tcl$(VERSION)' 45+test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
45 PRIVATE_INCLUDE_DIR='$(includedir)' 46 PRIVATE_INCLUDE_DIR='$(includedir)'
46 HTML_DIR='$(DISTDIR)/html' 47 HTML_DIR='$(DISTDIR)/html'
47 48