Changeset 2224 for branches/blt4/gui


Ignore:
Timestamp:
Apr 26, 2011, 10:02:20 AM (13 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/gui/configure.in

    r2179 r2224  
    105105  # by --with-tcl.
    106106
    107   for dir in \
    108         $with_tcl
    109   do
     107  for dir in $with_tcl ; do
    110108    if test -r "$dir/tclConfig.sh" ; then
    111109      tcl_config_sh="$dir/tclConfig.sh"
     
    122120  #  1. Search previously named locations.
    123121
    124   for dir in \
    125    $prefix \
    126    $exec_prefix \
    127    $gui_cv_tcl_lib
    128   do
     122  for dir in $prefix $exec_prefix $gui_cv_tcl_lib ; do
    129123    if test -r "$dir/tclConfig.sh" ; then
    130124      tcl_config_sh="$dir/tclConfig.sh"
     
    158152  # by --with-tk.
    159153
    160   for dir in \
    161         $with_tk \
    162         $with_tcl \
    163   do
     154  for dir in $with_tk $with_tcl  ; do
    164155    if test -r "$dir/tkConfig.sh" ; then
    165       tcl_config_sh="$dir/tkConfig.sh"
     156      tk_config_sh="$dir/tkConfig.sh"
    166157      break
    167158    elif test -r "$dir/lib/tkConfig.sh" ; then
    168       tcl_config_sh="$dir/lib/tkConfig.sh"
     159      tk_config_sh="$dir/lib/tkConfig.sh"
    169160      break
    170161    fi
     
    176167  #  1. Search previously named locations.
    177168
    178   for dir in \
    179    $prefix \
    180    $exec_prefix \
    181   do
     169  for dir in $prefix $exec_prefix ; do
    182170    if test -r "$dir/tkConfig.sh" ; then
    183       tcl_config_sh="$dir/tkConfig.sh"
     171      tk_config_sh="$dir/tkConfig.sh"
    184172      break
    185173    elif test -r "$dir/lib/tkConfig.sh" ; then
    186       tcl_config_sh="$dir/lib/tkConfig.sh"
     174      tk_config_sh="$dir/lib/tkConfig.sh"
    187175      break
    188176    fi
Note: See TracChangeset for help on using the changeset viewer.