From owner-freebsd-current@FreeBSD.ORG Mon Sep 1 07:58:47 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C99516A4BF for ; Mon, 1 Sep 2003 07:58:47 -0700 (PDT) Received: from mailspool.ops.uunet.co.za (mailspool.ops.uunet.co.za [196.7.0.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A52943FE0 for ; Mon, 1 Sep 2003 07:58:46 -0700 (PDT) (envelope-from ianf@mci.com) Received: from copernicus.so.cpt1.za.uu.net ([196.30.72.32]) by mailspool.ops.uunet.co.za with esmtp (Exim 3.36 #1) id 19tq8i-000IpX-00 for freebsd-current@freebsd.org; Mon, 01 Sep 2003 16:58:44 +0200 Received: from localhost ([127.0.0.1] helo=mci.com) by copernicus.so.cpt1.za.uu.net with esmtp (Exim 3.36 #1) id 19tq8a-000ErA-00 for freebsd-current@freebsd.org; Mon, 01 Sep 2003 16:58:36 +0200 To: freebsd-current@freebsd.org From: Ian Freislich X-image-url: http://www.digs.iafrica.com/gallery/ian-small.gif X-BOFH: true X-LART: Depleted uranium X-No-Junk-Mail: I do not want to get *any* junk mail. You have been deleted. Date: Mon, 01 Sep 2003 16:58:36 +0200 Message-ID: <57111.1062428316@mci.com> Sender: ianf@mci.com Subject: bsd.lib.mk and bsd.own.mk ignore /etc/make.conf(INSTALL) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2003 14:58:47 -0000 Hi Any idea why '-C' is hard coded for bsd.lib.mk and bsd.own.mk? I thought that the make.conf variable was there to allow or disallow this. The following comes from bsd.lib.mk: .if defined(LIB) && !empty(LIB) && !defined(NOINSTALLLIB) ${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} lib${LIB}.a ${DESTDIR}${LIBDIR} .endif .if !defined(NOPROFILE) && defined(LIB) && !empty(LIB) ${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} lib${LIB}_p.a ${DESTDIR}${LIBDIR} .endif Ian