mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 12:32:11 +02:00
This helps in compiling other programs like expect which depend on private headers but 8.5, 8.6 and so on is enough granularity and currently we had 8.6.x and so on which means that expect recipe will need to be touched whenever there is minor update of tcl. Additionally the encode creating symlink to shared object in patch and remove it from recipe Refresh patches after making changes to Configure.in we propertly generate configure and not patch is directly as was the case. (From OE-Core rev: 67f44193135c789e478410347ff58ed110ed9484) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
Lets install the include header and private header files into
|
|
usr/include/tcl8.6 when version of tcl is 8.6.x
|
|
|
|
Upstream-Status: Inappropriate [Configuration Specific]
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmai.com>
|
|
|
|
Index: unix/Makefile.in
|
|
===================================================================
|
|
--- unix.orig/Makefile.in 2013-11-11 01:00:36.431550403 -0800
|
|
+++ unix/Makefile.in 2013-11-11 01:05:09.587557282 -0800
|
|
@@ -53,7 +53,7 @@
|
|
SCRIPT_INSTALL_DIR = $(INSTALL_ROOT)$(TCL_LIBRARY)
|
|
|
|
# Directory in which to install the include file tcl.h:
|
|
-INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(includedir)
|
|
+INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(includedir)/tcl$(VERSION)
|
|
|
|
# Path to the private tcl header dir:
|
|
PRIVATE_INCLUDE_DIR = @PRIVATE_INCLUDE_DIR@
|
|
Index: unix/configure.in
|
|
===================================================================
|
|
--- unix.orig/configure.in 2013-11-11 01:00:36.467550403 -0800
|
|
+++ unix/configure.in 2013-11-11 01:00:36.503550404 -0800
|
|
@@ -791,7 +791,7 @@
|
|
eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
|
|
|
|
TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
|
|
-PRIVATE_INCLUDE_DIR='$(includedir)'
|
|
+PRIVATE_INCLUDE_DIR='$(includedir)/tcl$(VERSION)'
|
|
HTML_DIR='$(DISTDIR)/html'
|
|
|
|
# Note: in the following variable, it's important to use the absolute
|
|
Index: unix/configure
|
|
===================================================================
|
|
--- unix.orig/configure 2013-11-11 01:00:36.467550403 -0800
|
|
+++ unix/configure 2013-11-11 01:00:36.503550404 -0800
|
|
@@ -19134,7 +19134,7 @@
|
|
eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
|
|
|
|
TCL_LIBRARY='$(libdir)/tcl$(VERSION)'
|
|
-PRIVATE_INCLUDE_DIR='$(includedir)'
|
|
+PRIVATE_INCLUDE_DIR='$(includedir)/tcl$(VERSION)'
|
|
HTML_DIR='$(DISTDIR)/html'
|
|
|
|
# Note: in the following variable, it's important to use the absolute
|