blob: d193064ab607e128b83f127f9891ab8085270e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff -Naur tcl8.4.6.orig/unix/configure tcl8.4.6/unix/configure
--- tcl8.4.6.orig/unix/configure 2004-03-01 15:58:59.000000000 -0800
+++ tcl8.4.6/unix/configure 2004-12-21 01:58:16.250206343 -0800
@@ -7248,7 +7248,7 @@
if test "$FRAMEWORK_BUILD" = "1" ; then
TCL_PACKAGE_PATH="${libdir}/Resources/Scripts"
-elif test "$prefix" != "$exec_prefix"; then
+elif test "$prefix" != "$exec_prefix" -o "${libdir}" != "${prefix}/lib"; then
TCL_PACKAGE_PATH="${libdir} ${prefix}/lib"
else
TCL_PACKAGE_PATH="${prefix}/lib"
diff -Naur tcl8.4.6.orig/unix/configure.in tcl8.4.6/unix/configure.in
--- tcl8.4.6.orig/unix/configure.in 2004-03-01 15:58:59.000000000 -0800
+++ tcl8.4.6/unix/configure.in 2004-12-21 01:57:58.059204301 -0800
@@ -510,7 +510,7 @@
if test "$FRAMEWORK_BUILD" = "1" ; then
TCL_PACKAGE_PATH="${libdir}/Resources/Scripts"
-elif test "$prefix" != "$exec_prefix"; then
+elif test "$prefix" != "$exec_prefix" -o "${libdir}" != "${prefix}/lib"; then
TCL_PACKAGE_PATH="${libdir} ${prefix}/lib"
else
TCL_PACKAGE_PATH="${prefix}/lib"
|