From 0e7b8a8da00468c7f405389fe9ed2c70467ab13c Mon Sep 17 00:00:00 2001 From: jb Date: Wed, 9 Sep 1998 08:29:15 +0000 Subject: 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(-) (limited to 'usr.bin') diff --git a/usr.bin/make/config.h b/usr.bin/make/config.h index d72e654..3d44e2e 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 -- cgit v1.1