Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From 6efc98774681795712073c2b91e5e9d1763239b8 Mon Sep 17 00:00:00 2001 |
| 2 | From: "Song.Li" <Song.Li@windriver.com> |
| 3 | Date: Wed, 1 Aug 2012 19:05:51 +0800 |
| 4 | Subject: [PATCH] tcl:install tcl to lib64 instead of lib on 64bit target |
| 5 | |
| 6 | Remove hardcoded library install path. Change $(prefix)/lib/ to ${libdir}. |
| 7 | |
| 8 | [YOCTO #2876] |
| 9 | |
| 10 | This is not a bug, but libraries should be installed into directory .../lib/. |
| 11 | On 64bit target that should be lib64/. |
| 12 | |
| 13 | Upstream-Status: Inappropriate [configuration] |
| 14 | |
| 15 | Signed-off-by: Song.Li <Song.Li@windriver.com> |
| 16 | Signed-off-by: Kai Kang <kai.kang@windriver.com> |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 17 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | --- |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 19 | configure | 2 +- |
| 20 | configure.in | 2 +- |
| 21 | 2 files changed, 2 insertions(+), 2 deletions(-) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 22 | |
| 23 | Index: unix/configure |
| 24 | =================================================================== |
| 25 | --- unix.orig/configure 2013-11-10 23:38:33.643426430 -0800 |
| 26 | +++ unix/configure 2013-11-10 23:39:51.347428387 -0800 |
| 27 | @@ -19134,7 +19134,7 @@ |
| 28 | |
| 29 | eval "TCL_LIB_FILE=${TCL_LIB_FILE}" |
| 30 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 31 | -test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)' |
| 32 | +test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(libdir)/tcl$(VERSION)' |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 33 | PRIVATE_INCLUDE_DIR='$(includedir)' |
| 34 | HTML_DIR='$(DISTDIR)/html' |
| 35 | |
| 36 | Index: unix/configure.in |
| 37 | =================================================================== |
| 38 | --- unix.orig/configure.in 2013-11-10 23:20:50.000000000 -0800 |
| 39 | +++ unix/configure.in 2013-11-10 23:39:41.199428131 -0800 |
| 40 | @@ -790,7 +790,7 @@ |
| 41 | |
| 42 | eval "TCL_LIB_FILE=${TCL_LIB_FILE}" |
| 43 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 44 | -test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)' |
| 45 | +test -z "$TCL_LIBRARY" && TCL_LIBRARY='$(libdir)/tcl$(VERSION)' |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 46 | PRIVATE_INCLUDE_DIR='$(includedir)' |
| 47 | HTML_DIR='$(DISTDIR)/html' |
| 48 | |