Revision 6792aa11 configure

b/configure
803 803
# Solaris specific configure tool chain decisions
804 804
#
805 805
if test "$solaris" = "yes" ; then
806
  solinst=`path_of $install`
807
  if test -z "$solinst" ; then
806
  if has $install; then
807
    :
808
  else
808 809
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
809 810
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
810 811
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
811 812
    exit 1
812 813
  fi
813
  if test "$solinst" = "/usr/sbin/install" ; then
814
  if test "`path_of $install`" = "/usr/sbin/install" ; then
814 815
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
815 816
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
816 817
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
817 818
    exit 1
818 819
  fi
819
  sol_ar=`path_of ar`
820
  if test -z "$sol_ar" ; then
820
  if has ar; then
821
    :
822
  else
821 823
    echo "Error: No path includes ar"
822 824
    if test -f /usr/ccs/bin/ar ; then
823 825
      echo "Add /usr/ccs/bin to your path and rerun configure"

Also available in: Unified diff