From c9db555954dad0455d2fa087e26866bbed82ade8 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Wed, 9 Sep 1998 08:29:15 +0000 Subject: [PATCH] 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 --- usr.bin/make/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/make/config.h b/usr.bin/make/config.h index d72e6543b045..3d44e2e07e12 100644 --- a/usr.bin/make/config.h +++ b/usr.bin/make/config.h @@ -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