summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
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.patch47
1 files changed, 47 insertions, 0 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
new file mode 100644
index 0000000000..16f7c80516
--- /dev/null
+++ b/meta/recipes-devtools/tcltk/tcl/tcl-remove-hardcoded-install-path.patch
@@ -0,0 +1,47 @@
1From 6efc98774681795712073c2b91e5e9d1763239b8 Mon Sep 17 00:00:00 2001
2From: "Song.Li" <Song.Li@windriver.com>
3Date: Wed, 1 Aug 2012 19:05:51 +0800
4Subject: [PATCH] tcl:install tcl to lib64 instead of lib on 64bit target
5
6Remove hardcoded library install path. Change $(prefix)/lib/ to ${libdir}.
7
8[YOCTO #2876]
9
10This is not a bug, but libraries should be installed into directory .../lib/.
11On 64bit target that should be lib64/.
12
13Upstream-Status: Inappropriate [configuration]
14
15Signed-off-by: Song.Li <Song.Li@windriver.com>
16Signed-off-by: Kai Kang <kai.kang@windriver.com>
17
18---
19 configure | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22Index: unix/configure
23===================================================================
24--- unix.orig/configure 2013-11-10 23:38:33.643426430 -0800
25+++ unix/configure 2013-11-10 23:39:51.347428387 -0800
26@@ -19134,7 +19134,7 @@
27
28 eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
29
30-TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)'
31+TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
32 PRIVATE_INCLUDE_DIR='$(includedir)'
33 HTML_DIR='$(DISTDIR)/html'
34
35Index: unix/configure.in
36===================================================================
37--- unix.orig/configure.in 2013-11-10 23:20:50.000000000 -0800
38+++ unix/configure.in 2013-11-10 23:39:41.199428131 -0800
39@@ -790,7 +790,7 @@
40
41 eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
42
43-TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)'
44+TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
45 PRIVATE_INCLUDE_DIR='$(includedir)'
46 HTML_DIR='$(DISTDIR)/html'
47