Magellan Linux

Annotation of /trunk/tcl/patches/tcl-8.6.0-autopath.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2008 - (hide annotations) (download)
Tue Jan 1 15:43:44 2013 UTC (11 years, 5 months ago) by niro
File size: 869 byte(s)
-reworked for tcl 8.6
1 niro 2008 unix/configure.in | 4 ++--
2     1 file changed, 2 insertions(+), 2 deletions(-)
3    
4     diff --git a/unix/configure.in b/unix/configure.in
5     index 65f712a..b606b74 100755
6     --- a/unix/configure.in
7     +++ b/unix/configure.in
8     @@ -840,9 +840,9 @@ if test "$FRAMEWORK_BUILD" = "1" ; then
9     test -z "$TCL_MODULE_PATH" && \
10     TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl /System/Library/Tcl"
11     elif test "$prefix/lib" != "$libdir"; then
12     - TCL_PACKAGE_PATH="${libdir} ${prefix}/lib ${TCL_PACKAGE_PATH}"
13     + TCL_PACKAGE_PATH="${libdir}/tcl8.6 ${prefix}/share/tcl8.6 ${libdir}/tk8.6 ${prefix}/share/tk8.6 ${TCL_PACKAGE_PATH}"
14     else
15     - TCL_PACKAGE_PATH="${prefix}/lib ${TCL_PACKAGE_PATH}"
16     + TCL_PACKAGE_PATH="${libdir}/tcl8.6 ${prefix}/share/tcl8.6 ${libdir}/tk8.6 ${prefix}/share/tk8.6 ${TCL_PACKAGE_PATH}"
17     fi
18    
19     #--------------------------------------------------------------------