Hello Miguel, all!

Miguel Cardenas wrote:
Hello

Am trying to compile mysql-5.0.18 under solaris 10 but get the following
error

Making all in zlib
make[2]: Entering directory `/tmp/mysql-5.0.18/zlib'
[[...]]
(cd .libs && rm -f libz.so && ln -s libz.so.1.2.3 libz.so)
false cru .libs/libz.a  adler32.o compress.o crc32.o deflate.o gzio.o
infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o
make[2]: *** [libz.la] Error 1
[[...]]

The last command line quoted really looks suspicious:
  false cru .libs/libz.a  adler32.o compress.o ...

A "false" command is bound to fail!

Looking at the parameters, this should certainly be
  ar cru .libs/libz.a  adler32.o compress.o ...

I guess you have some setting like "AR=false" or similar,
check and correct that.


HTH,
Jörg

--
Joerg Bruehe, Senior Production Engineer
MySQL AB, www.mysql.com

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to