diff options
| author | mdejong <mdejong> | 2005-07-26 20:20:21 (GMT) |
|---|---|---|
| committer | mdejong <mdejong> | 2005-07-26 20:20:21 (GMT) |
| commit | 6e79727b1ccc0015c1b30a5d30a1d11d4c99af27 (patch) | |
| tree | 1f752ee2b031e6e9bf8d593b06e2a22cf1b99d86 /unix/configure | |
| parent | f5f81138957842fbd59ea0ff6d47676a0f2f21bb (diff) | |
| download | tcl-6e79727b1ccc0015c1b30a5d30a1d11d4c99af27.zip tcl-6e79727b1ccc0015c1b30a5d30a1d11d4c99af27.tar.gz tcl-6e79727b1ccc0015c1b30a5d30a1d11d4c99af27.tar.bz2 | |
* unix/configure: Regen.
* unix/configure.in: Check for a $prefix/share
directory and add it the the package if found.
This will check for Tcl packages in /usr/local/share
when Tcl is configured with the default dist install.
[patch 1231015]
Diffstat (limited to 'unix/configure')
| -rwxr-xr-x | unix/configure | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/unix/configure b/unix/configure index 7f9b3fc..e872f7d 100755 --- a/unix/configure +++ b/unix/configure @@ -13691,6 +13691,13 @@ else TCL_PACKAGE_PATH="${prefix}/lib" fi +# If a system share directory like /usr/local/share already exists, then add +# it to the package search path. + +if test -d "${prefix}/share" ; then + TCL_PACKAGE_PATH="${TCL_PACKAGE_PATH} ${prefix}/share" +fi + #-------------------------------------------------------------------- # The statements below define various symbols relating to Tcl # stub support. |
