earle@SUN.COM (Greg Earle) (12/23/88)
The line in `make install' that reads cp gcc.1 mandir should be cp gcc.1 $(mandir) - Greg
earle@SUN.COM (Greg Earle) (12/23/88)
The line in `make install' that reads if [ -f /usr/bin/ranlib ] ; then (cd $(libdir); ranlib /gcc-gnulib) ;fi should be if [ -f /usr/bin/ranlib ] ; then (cd $(libdir); ranlib gcc-gnulib) ;fi or if [ -f /usr/bin/ranlib ] ; then (randlib $(libdir)/gcc-gnulib) ;fi - Greg