- improve tcl8.3.5-tclConfig-package-path-90160.patch to look in libdir in

addition to datadir for packages, so that tclsh can load binary
    packages in lib64 (135310)
This commit is contained in:
Jens Petersen 2004-10-15 11:32:07 +00:00
parent 326e8b2f54
commit 9aeca00b94
2 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@
Summary: Tcl scripting language development environment
Name: tcl
Version: %{majorver}.7
Release: 1
Release: 2
License: BSD
Group: Development/Languages
URL: http://tcl.sourceforge.net/
@ -141,6 +141,11 @@ rm -rf $RPM_BUILD_ROOT
%doc html/*
%changelog
* Fri Oct 15 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-2
- improve tcl8.3.5-tclConfig-package-path-90160.patch to look in libdir in
addition to datadir for packages, so that tclsh can load binary packages
in lib64 (135310)
* Fri Jul 30 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-1
- update to 8.4.7
- replace tcl-8.4.5-no_rpath.patch by tcl-8.4-no_rpath.patch

View File

@ -6,7 +6,7 @@ diff -u tcl8.3.5/unix/configure.in~ tcl8.3.5/unix/configure.in
TCL_PACKAGE_PATH="${libdir} ${prefix}/lib"
else
- TCL_PACKAGE_PATH="${prefix}/lib"
+ TCL_PACKAGE_PATH="${prefix}/share"
+ TCL_PACKAGE_PATH="${libdir} ${prefix}/share"
fi
#--------------------------------------------------------------------