diff options
| author | Bruce Momjian | 1998-10-02 01:22:43 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-10-02 01:22:43 +0000 |
| commit | 3f2fff5c5d9813c9b47c8ffc2ea85a66951caf37 (patch) | |
| tree | efc90ac5285d4a0de0b5bc382ec2aa841e4dd931 /src/pl | |
| parent | e12f4162c323e2bfdbeae1209f5482037705e114 (diff) | |
Search contrib/tcl for tcl startup.
Diffstat (limited to 'src/pl')
| -rwxr-xr-x | src/pl/tcl/mkMakefile.tcldefs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/tcl/mkMakefile.tcldefs b/src/pl/tcl/mkMakefile.tcldefs index ba1a9c63af9..9881d6bf99e 100755 --- a/src/pl/tcl/mkMakefile.tcldefs +++ b/src/pl/tcl/mkMakefile.tcldefs @@ -5,12 +5,15 @@ else if [ -f /usr/lib/tclConfig.sh ]; then echo "using tclConfig.sh from /usr/lib" . /usr/lib/tclConfig.sh + elif [ -f /usr/contrib/lib/tclConfig.sh ]; then + echo "using tclConfig.sh from /usr/contrib/lib" + . /usr/contrib/lib/tclConfig.sh else if [ -f /usr/local/lib/tclConfig.sh ]; then echo "using tclConfig.sh from /usr/local/lib" . /usr/local/lib/tclConfig.sh else - echo "tclConfig.sh not found in /usr/lib or /usr/local/lib" + echo "tclConfig.sh not found in /usr/lib, /usr/contrib/lib, or /usr/local/lib" echo "I need this file! Please make a symbolic link to this file" echo "and start make again." exit 1 |
