Howell Hughes wrote:
> Thank you for your continued assistance.
>
> I don't have a config.status file. Perhaps I should explain that I
> didn't compile the coreutils package I downloaded a pre configured
> coreutils 8.7 package from sunfreeware along with some of the
> dependancies that were mentioned.
>
>
> I Downloaded
>
> coreutils-8.7-sol10-sparc-local
>
> and the following dependencies are described as being required on the
> sun freeware web site http://www.sunfreeware.com/indexsparc10.html
> libintl-3.4.0-sol10-sparc-local
> libiconv-1.13.1-sol10-sparc-local
> libgcc-3.4.6-sol10-sparc-local
> gmp-4.2.1-sol10-sparc-local

In that case, I suggest you download coreutils sources and
build your own binaries, since the ones you downloaded obviously
don't work properly.

If you have the xz program (from the xz-utils package), do this:

wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.xz
wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.xz.sig
gpg --verify coreutils-8.7.tar.xz.sig &&
  xz -dc coreutils-8.7.tar.xz | tar xf - &&
  (cd coreutils-8.7 && ./configure && make && make -k check ) >& log

Otherwise, do this:

wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz
wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-8.7.tar.gz.sig
gpg --verify coreutils-8.7.tar.gz.sig &&
  gzip -dc coreutils-8.7.tar.gz | tar xf - &&
  (cd coreutils-8.7 && ./configure && make && make -k check ) >& log

Reply via email to