Don't define RANLIBMAG if building an elf version of make. The RANLIBMAG

option lets make look inside archive libraries when determining if a
library is out-of-date. I don't think that make should look inside
files, so this fix effectively tells it not to. If the decision is
made (by someone else) that make _should_ be doing this, it will need
to be taught how to recognise elf archive libraries.

Problem noticed by: Joseph Koshy <jkoshy@freebsd.org>
This commit is contained in:
John Birrell 1998-09-09 08:29:15 +00:00
parent 355a2610a7
commit c9db555954
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38985

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)config.h 8.1 (Berkeley) 6/6/93
* $Id$
* $Id: config.h,v 1.6 1997/02/22 19:27:08 peter Exp $
*/
#define DEFSHELL 1 /* Bourne shell */
@ -110,7 +110,7 @@
*/
#define SUNSHCMD
#if !defined(__svr4__) && !defined(__SVR4)
#if !defined(__svr4__) && !defined(__SVR4) && !defined(__ELF__)
# ifndef RANLIBMAG
# define RANLIBMAG "__.SYMDEF"
# endif